pub struct Delivery {
pub mode: DeliveryMode,
pub channel: Option<String>,
pub to: Option<String>,
pub best_effort: bool,
}Expand description
Delivery configuration for isolated jobs.
Fields§
§mode: DeliveryMode§channel: Option<String>§to: Option<String>§best_effort: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for Delivery
impl<'de> Deserialize<'de> for Delivery
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 Delivery
impl RefUnwindSafe for Delivery
impl Send for Delivery
impl Sync for Delivery
impl Unpin for Delivery
impl UnsafeUnpin for Delivery
impl UnwindSafe for Delivery
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