#[non_exhaustive]pub struct SyncStage {
pub name: String,
pub alias: Option<String>,
pub syncsupport: Option<SyncSupport>,
pub syncequivalent: Option<SyncEquivalent>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: String
§alias: Option<String>
§syncsupport: Option<SyncSupport>
§syncequivalent: Option<SyncEquivalent>
Trait Implementations§
impl Eq for SyncStage
impl StructuralPartialEq for SyncStage
Auto Trait Implementations§
impl Freeze for SyncStage
impl RefUnwindSafe for SyncStage
impl Send for SyncStage
impl Sync for SyncStage
impl Unpin for SyncStage
impl UnwindSafe for SyncStage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more