pub struct AdoVariables(pub Vec<AdoVariable>);Expand description
ADO variables: block. Can be a sequence (list of group/name-value entries)
or a mapping (variableName: value). We normalise both into a Vec
Tuple Fields§
§0: Vec<AdoVariable>Trait Implementations§
Source§impl Debug for AdoVariables
impl Debug for AdoVariables
Source§impl Default for AdoVariables
impl Default for AdoVariables
Source§fn default() -> AdoVariables
fn default() -> AdoVariables
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdoVariables
impl<'de> Deserialize<'de> for AdoVariables
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
Auto Trait Implementations§
impl Freeze for AdoVariables
impl RefUnwindSafe for AdoVariables
impl Send for AdoVariables
impl Sync for AdoVariables
impl Unpin for AdoVariables
impl UnsafeUnpin for AdoVariables
impl UnwindSafe for AdoVariables
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