Enum bc_envelope::base::format::EnvelopeFormatItem
source · pub enum EnvelopeFormatItem {
Begin(String),
End(String),
Item(String),
Separator,
List(Vec<EnvelopeFormatItem>),
}Expand description
This type is returned by implementers of the EnvelopeFormat trait.
Variants§
Trait Implementations§
source§impl Clone for EnvelopeFormatItem
impl Clone for EnvelopeFormatItem
source§fn clone(&self) -> EnvelopeFormatItem
fn clone(&self) -> EnvelopeFormatItem
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 EnvelopeFormatItem
impl Debug for EnvelopeFormatItem
source§impl Display for EnvelopeFormatItem
impl Display for EnvelopeFormatItem
source§impl From<&str> for EnvelopeFormatItem
impl From<&str> for EnvelopeFormatItem
source§impl Ord for EnvelopeFormatItem
impl Ord for EnvelopeFormatItem
source§impl PartialEq for EnvelopeFormatItem
impl PartialEq for EnvelopeFormatItem
source§impl PartialOrd for EnvelopeFormatItem
impl PartialOrd for EnvelopeFormatItem
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for EnvelopeFormatItem
Auto Trait Implementations§
impl Freeze for EnvelopeFormatItem
impl RefUnwindSafe for EnvelopeFormatItem
impl Send for EnvelopeFormatItem
impl Sync for EnvelopeFormatItem
impl Unpin for EnvelopeFormatItem
impl UnwindSafe for EnvelopeFormatItem
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