pub enum SectionMeta {
Section(String),
Repeat(u32),
}Variants§
Trait Implementations§
Source§impl Clone for SectionMeta
impl Clone for SectionMeta
Source§fn clone(&self) -> SectionMeta
fn clone(&self) -> SectionMeta
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SectionMeta
impl Debug for SectionMeta
Source§impl<'de> Deserialize<'de> for SectionMeta
impl<'de> Deserialize<'de> for SectionMeta
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 SectionMeta
impl PartialEq for SectionMeta
Source§impl Serialize for SectionMeta
impl Serialize for SectionMeta
impl StructuralPartialEq for SectionMeta
Auto Trait Implementations§
impl Freeze for SectionMeta
impl RefUnwindSafe for SectionMeta
impl Send for SectionMeta
impl Sync for SectionMeta
impl Unpin for SectionMeta
impl UnsafeUnpin for SectionMeta
impl UnwindSafe for SectionMeta
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