pub struct Instance {Show 16 fields
pub instance_id: String,
pub name: String,
pub state: String,
pub instance_type: String,
pub availability_zone: String,
pub public_ipv4_dns: String,
pub public_ipv4_address: String,
pub elastic_ip: String,
pub ipv6_ips: String,
pub monitoring: String,
pub security_groups: String,
pub key_name: String,
pub launch_time: String,
pub platform_details: String,
pub status_checks: String,
pub alarm_status: String,
}Fields§
§instance_id: String§name: String§state: String§instance_type: String§availability_zone: String§public_ipv4_dns: String§public_ipv4_address: String§elastic_ip: String§ipv6_ips: String§monitoring: String§security_groups: String§key_name: String§launch_time: String§platform_details: String§status_checks: String§alarm_status: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Instance
impl RefUnwindSafe for Instance
impl Send for Instance
impl Sync for Instance
impl Unpin for Instance
impl UnsafeUnpin for Instance
impl UnwindSafe for Instance
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.