[−][src]Struct rendy_chain::SyncData
Both sides of synchronization for submission.
Fields
wait: Vec<Wait<W>>
Points at other queues that must be waited before commands from the submission can be executed.
acquire: Guard
Acquire side of submission synchronization. Synchronization commands from this side must be recorded before main commands of submission.
release: Guard
Release side of submission synchronization. Synchronization commands from this side must be recorded after main commands of submission.
signal: Vec<Signal<S>>
Points at other queues that can run after barriers above.
Trait Implementations
impl<S: Clone, W: Clone> Clone for SyncData<S, W>
[src]
fn clone(&self) -> SyncData<S, W>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<S: Debug, W: Debug> Debug for SyncData<S, W>
[src]
Auto Trait Implementations
impl<S, W> Unpin for SyncData<S, W> where
S: Unpin,
W: Unpin,
S: Unpin,
W: Unpin,
impl<S, W> Sync for SyncData<S, W> where
S: Sync,
W: Sync,
S: Sync,
W: Sync,
impl<S, W> Send for SyncData<S, W> where
S: Send,
W: Send,
S: Send,
W: Send,
impl<S, W> UnwindSafe for SyncData<S, W> where
S: UnwindSafe,
W: UnwindSafe,
S: UnwindSafe,
W: UnwindSafe,
impl<S, W> RefUnwindSafe for SyncData<S, W> where
S: RefUnwindSafe,
W: RefUnwindSafe,
S: RefUnwindSafe,
W: RefUnwindSafe,
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,