pub struct TransitGateway {
pub id: String,
pub description: String,
pub state: String,
}Expand description
A Transit Gateway.
Fields§
§id: String§description: String§state: Stringpending | available | modifying | deleting | deleted.
Trait Implementations§
Source§impl Clone for TransitGateway
impl Clone for TransitGateway
Source§fn clone(&self) -> TransitGateway
fn clone(&self) -> TransitGateway
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 TransitGateway
impl Debug for TransitGateway
Source§impl<'de> Deserialize<'de> for TransitGateway
impl<'de> Deserialize<'de> for TransitGateway
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 TransitGateway
impl RefUnwindSafe for TransitGateway
impl Send for TransitGateway
impl Sync for TransitGateway
impl Unpin for TransitGateway
impl UnsafeUnpin for TransitGateway
impl UnwindSafe for TransitGateway
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