pub struct AdoParameter {
pub name: Option<String>,
pub param_type: Option<String>,
pub values: Option<Vec<Value>>,
}Expand description
Pipeline / template parameters: entry. We deliberately ignore default:
— only the name, type, and values: allowlist matter for our rules.
Fields§
§name: Option<String>§param_type: Option<String>§values: Option<Vec<Value>>Trait Implementations§
Source§impl Debug for AdoParameter
impl Debug for AdoParameter
Source§impl<'de> Deserialize<'de> for AdoParameter
impl<'de> Deserialize<'de> for AdoParameter
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 AdoParameter
impl RefUnwindSafe for AdoParameter
impl Send for AdoParameter
impl Sync for AdoParameter
impl Unpin for AdoParameter
impl UnsafeUnpin for AdoParameter
impl UnwindSafe for AdoParameter
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