pub struct GetNetworkPrivateResponse {
pub elements: Option<Vec<GetNetworkPrivateResponseElementsItem>>,
pub folders: Option<Vec<GetNetworkPrivateResponseFoldersItem>>,
pub meta: Option<GetNetworkPrivateResponseMeta>,
}
Fields§
§elements: Option<Vec<GetNetworkPrivateResponseElementsItem>>
Information about a Private API Network’s folder elements. Elements are APIs, collections, and workspaces.
folders: Option<Vec<GetNetworkPrivateResponseFoldersItem>>
Information about the Private API Network’s folders.
meta: Option<GetNetworkPrivateResponseMeta>
The response’s non-standard meta information.
Trait Implementations§
Source§impl Clone for GetNetworkPrivateResponse
impl Clone for GetNetworkPrivateResponse
Source§fn clone(&self) -> GetNetworkPrivateResponse
fn clone(&self) -> GetNetworkPrivateResponse
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 GetNetworkPrivateResponse
impl Debug for GetNetworkPrivateResponse
Source§impl<'de> Deserialize<'de> for GetNetworkPrivateResponse
impl<'de> Deserialize<'de> for GetNetworkPrivateResponse
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
impl StructuralPartialEq for GetNetworkPrivateResponse
Auto Trait Implementations§
impl Freeze for GetNetworkPrivateResponse
impl RefUnwindSafe for GetNetworkPrivateResponse
impl Send for GetNetworkPrivateResponse
impl Sync for GetNetworkPrivateResponse
impl Unpin for GetNetworkPrivateResponse
impl UnwindSafe for GetNetworkPrivateResponse
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