pub struct AddressSpaceHierarchyResponse {
pub rir: String,
pub resource: String,
pub exact: Vec<AddressSpaceObject>,
pub less_specific: Vec<AddressSpaceObject>,
pub more_specific: Vec<AddressSpaceObject>,
pub query_time: String,
pub parameters: AddressSpaceHierarchyParameters,
}Fields§
§rir: String§resource: String§exact: Vec<AddressSpaceObject>§less_specific: Vec<AddressSpaceObject>§more_specific: Vec<AddressSpaceObject>§query_time: String§parameters: AddressSpaceHierarchyParametersTrait Implementations§
Source§impl Clone for AddressSpaceHierarchyResponse
impl Clone for AddressSpaceHierarchyResponse
Source§fn clone(&self) -> AddressSpaceHierarchyResponse
fn clone(&self) -> AddressSpaceHierarchyResponse
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<'de> Deserialize<'de> for AddressSpaceHierarchyResponse
impl<'de> Deserialize<'de> for AddressSpaceHierarchyResponse
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 AddressSpaceHierarchyResponse
impl PartialEq for AddressSpaceHierarchyResponse
Source§fn eq(&self, other: &AddressSpaceHierarchyResponse) -> bool
fn eq(&self, other: &AddressSpaceHierarchyResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AddressSpaceHierarchyResponse
impl StructuralPartialEq for AddressSpaceHierarchyResponse
Auto Trait Implementations§
impl Freeze for AddressSpaceHierarchyResponse
impl RefUnwindSafe for AddressSpaceHierarchyResponse
impl Send for AddressSpaceHierarchyResponse
impl Sync for AddressSpaceHierarchyResponse
impl Unpin for AddressSpaceHierarchyResponse
impl UnsafeUnpin for AddressSpaceHierarchyResponse
impl UnwindSafe for AddressSpaceHierarchyResponse
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