pub struct HostIP {
pub ip: String,
}
Expand description
HostIP represents a single IP address allocated to the host.
Fields§
§ip: String
IP is the IP address assigned to the host
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HostIP
impl<'de> Deserialize<'de> for HostIP
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 JsonSchema for HostIP
impl JsonSchema for HostIP
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn json_schema(__gen: &mut SchemaGenerator) -> Schema
fn json_schema(__gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl StructuralPartialEq for HostIP
Auto Trait Implementations§
impl Freeze for HostIP
impl RefUnwindSafe for HostIP
impl Send for HostIP
impl Sync for HostIP
impl Unpin for HostIP
impl UnwindSafe for HostIP
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