pub struct DeliverInfo {
pub google_service_type: Option<String>,
pub ip_address: Option<String>,
pub psc_google_api_target: Option<String>,
pub resource_uri: Option<String>,
pub storage_bucket: Option<String>,
pub target: Option<String>,
}Expand description
Details of the final state “deliver” and associated resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§google_service_type: Option<String>Recognized type of a Google Service the packet is delivered to (if applicable).
ip_address: Option<String>IP address of the target (if applicable).
psc_google_api_target: Option<String>PSC Google API target the packet is delivered to (if applicable).
resource_uri: Option<String>URI of the resource that the packet is delivered to.
storage_bucket: Option<String>Name of the Cloud Storage Bucket the packet is delivered to (if applicable).
target: Option<String>Target type where the packet is delivered to.
Trait Implementations§
Source§impl Clone for DeliverInfo
impl Clone for DeliverInfo
Source§fn clone(&self) -> DeliverInfo
fn clone(&self) -> DeliverInfo
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 Debug for DeliverInfo
impl Debug for DeliverInfo
Source§impl Default for DeliverInfo
impl Default for DeliverInfo
Source§fn default() -> DeliverInfo
fn default() -> DeliverInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeliverInfo
impl<'de> Deserialize<'de> for DeliverInfo
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
impl Part for DeliverInfo
Auto Trait Implementations§
impl Freeze for DeliverInfo
impl RefUnwindSafe for DeliverInfo
impl Send for DeliverInfo
impl Sync for DeliverInfo
impl Unpin for DeliverInfo
impl UnsafeUnpin for DeliverInfo
impl UnwindSafe for DeliverInfo
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