pub struct EniAttachment {
pub attachment_id: String,
pub instance_id: String,
pub device_index: i64,
pub status: String,
}Expand description
An ENI attachment.
Fields§
§attachment_id: String§instance_id: String§device_index: i64§status: Stringattaching | attached | detaching | detached.
Trait Implementations§
Source§impl Clone for EniAttachment
impl Clone for EniAttachment
Source§fn clone(&self) -> EniAttachment
fn clone(&self) -> EniAttachment
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 EniAttachment
impl Debug for EniAttachment
Source§impl<'de> Deserialize<'de> for EniAttachment
impl<'de> Deserialize<'de> for EniAttachment
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 EniAttachment
impl RefUnwindSafe for EniAttachment
impl Send for EniAttachment
impl Sync for EniAttachment
impl Unpin for EniAttachment
impl UnsafeUnpin for EniAttachment
impl UnwindSafe for EniAttachment
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