pub struct GetNetworkPrivateResponseMeta {
pub limit: Option<i64>,
pub offset: Option<i64>,
pub total_count: Option<i64>,
}
Fields§
§limit: Option<i64>
The maximum number of elements returned. If the value exceeds the maximum value of
1000
, then the system uses the 1000
value.
offset: Option<i64>
The zero-based offset of the first item returned.
total_count: Option<i64>
The total count of the elements
and folders
items.
Trait Implementations§
Source§impl Clone for GetNetworkPrivateResponseMeta
impl Clone for GetNetworkPrivateResponseMeta
Source§fn clone(&self) -> GetNetworkPrivateResponseMeta
fn clone(&self) -> GetNetworkPrivateResponseMeta
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<'de> Deserialize<'de> for GetNetworkPrivateResponseMeta
impl<'de> Deserialize<'de> for GetNetworkPrivateResponseMeta
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 GetNetworkPrivateResponseMeta
impl PartialEq for GetNetworkPrivateResponseMeta
Source§fn eq(&self, other: &GetNetworkPrivateResponseMeta) -> bool
fn eq(&self, other: &GetNetworkPrivateResponseMeta) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetNetworkPrivateResponseMeta
Auto Trait Implementations§
impl Freeze for GetNetworkPrivateResponseMeta
impl RefUnwindSafe for GetNetworkPrivateResponseMeta
impl Send for GetNetworkPrivateResponseMeta
impl Sync for GetNetworkPrivateResponseMeta
impl Unpin for GetNetworkPrivateResponseMeta
impl UnwindSafe for GetNetworkPrivateResponseMeta
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