pub struct ParameterizedJobConfig {
pub payload: Option<String>,
pub meta_required: Option<Vec<String>>,
pub meta_optional: Option<Vec<String>>,
}
Fields§
§payload: Option<String>
§meta_required: Option<Vec<String>>
§meta_optional: Option<Vec<String>>
Implementations§
Source§impl ParameterizedJobConfig
impl ParameterizedJobConfig
pub fn new() -> ParameterizedJobConfig
Trait Implementations§
Source§impl Clone for ParameterizedJobConfig
impl Clone for ParameterizedJobConfig
Source§fn clone(&self) -> ParameterizedJobConfig
fn clone(&self) -> ParameterizedJobConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParameterizedJobConfig
impl Debug for ParameterizedJobConfig
Source§impl<'de> Deserialize<'de> for ParameterizedJobConfig
impl<'de> Deserialize<'de> for ParameterizedJobConfig
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
Source§impl PartialEq for ParameterizedJobConfig
impl PartialEq for ParameterizedJobConfig
Source§fn eq(&self, other: &ParameterizedJobConfig) -> bool
fn eq(&self, other: &ParameterizedJobConfig) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for ParameterizedJobConfig
impl Serialize for ParameterizedJobConfig
impl StructuralPartialEq for ParameterizedJobConfig
Auto Trait Implementations§
impl Freeze for ParameterizedJobConfig
impl RefUnwindSafe for ParameterizedJobConfig
impl Send for ParameterizedJobConfig
impl Sync for ParameterizedJobConfig
impl Unpin for ParameterizedJobConfig
impl UnwindSafe for ParameterizedJobConfig
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