pub struct APIResourceList {
pub group_version: String,
pub resources: Vec<APIResource>,
}Fields§
§group_version: String§resources: Vec<APIResource>Trait Implementations§
Source§impl Clone for APIResourceList
impl Clone for APIResourceList
Source§fn clone(&self) -> APIResourceList
fn clone(&self) -> APIResourceList
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 Debug for APIResourceList
impl Debug for APIResourceList
Source§impl<'de> Deserialize<'de> for APIResourceList
impl<'de> Deserialize<'de> for APIResourceList
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 APIResourceList
impl PartialEq for APIResourceList
Source§fn eq(&self, other: &APIResourceList) -> bool
fn eq(&self, other: &APIResourceList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for APIResourceList
impl Serialize for APIResourceList
impl StructuralPartialEq for APIResourceList
Auto Trait Implementations§
impl Freeze for APIResourceList
impl RefUnwindSafe for APIResourceList
impl Send for APIResourceList
impl Sync for APIResourceList
impl Unpin for APIResourceList
impl UnsafeUnpin for APIResourceList
impl UnwindSafe for APIResourceList
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more