#[non_exhaustive]pub struct SyncAccess {
pub name: String,
pub alias: Option<String>,
pub comment: 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>
§comment: Option<String>
§syncsupport: Option<SyncSupport>
§syncequivalent: Option<SyncEquivalent>
Trait Implementations§
Source§impl Clone for SyncAccess
impl Clone for SyncAccess
Source§fn clone(&self) -> SyncAccess
fn clone(&self) -> SyncAccess
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SyncAccess
impl Debug for SyncAccess
Source§impl Default for SyncAccess
impl Default for SyncAccess
Source§fn default() -> SyncAccess
fn default() -> SyncAccess
Returns the “default value” for a type. Read more
Source§impl PartialEq for SyncAccess
impl PartialEq for SyncAccess
impl Eq for SyncAccess
impl StructuralPartialEq for SyncAccess
Auto Trait Implementations§
impl Freeze for SyncAccess
impl RefUnwindSafe for SyncAccess
impl Send for SyncAccess
impl Sync for SyncAccess
impl Unpin for SyncAccess
impl UnwindSafe for SyncAccess
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