#[repr(u8)]pub enum FileRelationType {
EmbeddedLibrary = 1,
OptionalDependency = 2,
RequiredDependency = 3,
Tool = 4,
Incompatible = 5,
Include = 6,
}Variants§
EmbeddedLibrary = 1
OptionalDependency = 2
RequiredDependency = 3
Tool = 4
Incompatible = 5
Include = 6
Trait Implementations§
Source§impl Clone for FileRelationType
impl Clone for FileRelationType
Source§fn clone(&self) -> FileRelationType
fn clone(&self) -> FileRelationType
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 FileRelationType
impl Debug for FileRelationType
Source§impl<'de> Deserialize<'de> for FileRelationType
impl<'de> Deserialize<'de> for FileRelationType
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FileRelationType
impl PartialEq for FileRelationType
Source§impl Serialize for FileRelationType
impl Serialize for FileRelationType
impl Copy for FileRelationType
impl Eq for FileRelationType
impl StructuralPartialEq for FileRelationType
Auto Trait Implementations§
impl Freeze for FileRelationType
impl RefUnwindSafe for FileRelationType
impl Send for FileRelationType
impl Sync for FileRelationType
impl Unpin for FileRelationType
impl UnwindSafe for FileRelationType
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