pub enum Input<'a> {
Vars(&'a str),
Payload(Format),
Attributes,
Authentication,
}Expand description
Represents top-level variables.
Variants§
Vars(&'a str)
Represents the vars variable.
Payload(Format)
Represents the payload variable.
Attributes
Represents the attributes variable.
Authentication
Represents the authentication variable.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Input<'a>
impl<'a> RefUnwindSafe for Input<'a>
impl<'a> Send for Input<'a>
impl<'a> Sync for Input<'a>
impl<'a> Unpin for Input<'a>
impl<'a> UnwindSafe for Input<'a>
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