pub enum VariableType {
Local(usize),
Match(usize),
Global(String),
Environment(String),
Envelope(Envelope),
Header(HeaderVariable),
Part(MessagePart),
}
Variants§
Local(usize)
Match(usize)
Global(String)
Environment(String)
Envelope(Envelope)
Header(HeaderVariable)
Part(MessagePart)
Trait Implementations§
Source§impl Clone for VariableType
impl Clone for VariableType
Source§fn clone(&self) -> VariableType
fn clone(&self) -> VariableType
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 VariableType
impl Debug for VariableType
Source§impl Display for VariableType
impl Display for VariableType
Source§impl MapLocalVars for VariableType
impl MapLocalVars for VariableType
fn map_local_vars(&mut self, last_id: usize)
Source§impl PartialEq for VariableType
impl PartialEq for VariableType
impl Eq for VariableType
impl StructuralPartialEq for VariableType
Auto Trait Implementations§
impl Freeze for VariableType
impl RefUnwindSafe for VariableType
impl Send for VariableType
impl Sync for VariableType
impl Unpin for VariableType
impl UnwindSafe for VariableType
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