pub struct DeliverySource {
pub name: String,
pub arn: String,
pub resource_arns: Vec<String>,
pub service: String,
pub log_type: String,
pub tags: BTreeMap<String, String>,
pub created_at: i64,
}Fields§
§name: String§arn: String§resource_arns: Vec<String>§service: String§log_type: String§created_at: i64Trait Implementations§
Source§impl Clone for DeliverySource
impl Clone for DeliverySource
Source§fn clone(&self) -> DeliverySource
fn clone(&self) -> DeliverySource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DeliverySource
impl<'de> Deserialize<'de> for DeliverySource
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 DeliverySource
impl RefUnwindSafe for DeliverySource
impl Send for DeliverySource
impl Sync for DeliverySource
impl Unpin for DeliverySource
impl UnsafeUnpin for DeliverySource
impl UnwindSafe for DeliverySource
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