#[non_exhaustive]pub struct ListNetworkUsageResponse {
pub networks: Vec<NetworkUsage>,
/* private fields */
}Expand description
Response with Networks with IPs
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.networks: Vec<NetworkUsage>Networks with IPs.
Implementations§
Source§impl ListNetworkUsageResponse
impl ListNetworkUsageResponse
pub fn new() -> Self
Sourcepub fn set_networks<T, V>(self, v: T) -> Self
pub fn set_networks<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for ListNetworkUsageResponse
impl Clone for ListNetworkUsageResponse
Source§fn clone(&self) -> ListNetworkUsageResponse
fn clone(&self) -> ListNetworkUsageResponse
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 ListNetworkUsageResponse
impl Debug for ListNetworkUsageResponse
Source§impl Default for ListNetworkUsageResponse
impl Default for ListNetworkUsageResponse
Source§fn default() -> ListNetworkUsageResponse
fn default() -> ListNetworkUsageResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListNetworkUsageResponse
impl Message for ListNetworkUsageResponse
Source§impl PartialEq for ListNetworkUsageResponse
impl PartialEq for ListNetworkUsageResponse
impl StructuralPartialEq for ListNetworkUsageResponse
Auto Trait Implementations§
impl Freeze for ListNetworkUsageResponse
impl RefUnwindSafe for ListNetworkUsageResponse
impl Send for ListNetworkUsageResponse
impl Sync for ListNetworkUsageResponse
impl Unpin for ListNetworkUsageResponse
impl UnwindSafe for ListNetworkUsageResponse
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