pub struct AllowedMethods {
pub quantity: i32,
pub items: MethodList,
pub cached_methods: Option<CachedMethods>,
}Fields§
§quantity: i32§items: MethodList§cached_methods: Option<CachedMethods>Trait Implementations§
Source§impl Clone for AllowedMethods
impl Clone for AllowedMethods
Source§fn clone(&self) -> AllowedMethods
fn clone(&self) -> AllowedMethods
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 AllowedMethods
impl Debug for AllowedMethods
Source§impl Default for AllowedMethods
impl Default for AllowedMethods
Source§fn default() -> AllowedMethods
fn default() -> AllowedMethods
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AllowedMethods
impl<'de> Deserialize<'de> for AllowedMethods
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
Auto Trait Implementations§
impl Freeze for AllowedMethods
impl RefUnwindSafe for AllowedMethods
impl Send for AllowedMethods
impl Sync for AllowedMethods
impl Unpin for AllowedMethods
impl UnsafeUnpin for AllowedMethods
impl UnwindSafe for AllowedMethods
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