pub struct GetHostOutput {
pub name: Option<String>,
pub provider_endpoint: Option<String>,
pub provider_type: Option<String>,
pub status: Option<String>,
pub vpc_configuration: Option<VpcConfiguration>,
}Fields§
§name: Option<String>The name of the requested host.
provider_endpoint: Option<String>The endpoint of the infrastructure represented by the requested host.
provider_type: Option<String>The provider type of the requested host, such as GitHub Enterprise Server.
status: Option<String>The status of the requested host.
vpc_configuration: Option<VpcConfiguration>The VPC configuration of the requested host.
Trait Implementations§
Source§impl Clone for GetHostOutput
impl Clone for GetHostOutput
Source§fn clone(&self) -> GetHostOutput
fn clone(&self) -> GetHostOutput
Returns a duplicate of the value. Read more
1.0.0 · 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 GetHostOutput
impl Debug for GetHostOutput
Source§impl Default for GetHostOutput
impl Default for GetHostOutput
Source§fn default() -> GetHostOutput
fn default() -> GetHostOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetHostOutput
impl<'de> Deserialize<'de> for GetHostOutput
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
Source§impl PartialEq for GetHostOutput
impl PartialEq for GetHostOutput
impl StructuralPartialEq for GetHostOutput
Auto Trait Implementations§
impl Freeze for GetHostOutput
impl RefUnwindSafe for GetHostOutput
impl Send for GetHostOutput
impl Sync for GetHostOutput
impl Unpin for GetHostOutput
impl UnwindSafe for GetHostOutput
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