#[repr(u16)]pub enum AssociationType {
None = 0,
GenericFolder = 1,
Unknown(u16),
}Expand description
Association type for objects (folder/container type).
Variants§
None = 0
No association (regular file).
GenericFolder = 1
Generic folder.
Unknown(u16)
Unknown association type code.
Trait Implementations§
Source§impl Clone for AssociationType
impl Clone for AssociationType
Source§fn clone(&self) -> AssociationType
fn clone(&self) -> AssociationType
Returns a duplicate 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 AssociationType
impl Debug for AssociationType
Source§impl Default for AssociationType
impl Default for AssociationType
Source§impl From<AssociationType> for u16
impl From<AssociationType> for u16
Source§fn from(enum_value: AssociationType) -> Self
fn from(enum_value: AssociationType) -> Self
Converts to this type from the input type.
Source§impl From<u16> for AssociationType
impl From<u16> for AssociationType
Source§impl FromPrimitive for AssociationType
impl FromPrimitive for AssociationType
Source§impl PartialEq for AssociationType
impl PartialEq for AssociationType
impl Copy for AssociationType
impl Eq for AssociationType
impl StructuralPartialEq for AssociationType
Auto Trait Implementations§
impl Freeze for AssociationType
impl RefUnwindSafe for AssociationType
impl Send for AssociationType
impl Sync for AssociationType
impl Unpin for AssociationType
impl UnsafeUnpin for AssociationType
impl UnwindSafe for AssociationType
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