pub struct RestDescriptionIcons {
pub x16: Option<String>,
pub x32: Option<String>,
}Expand description
Links to 16x16 and 32x32 icons representing the API.
This type is not used in any activity, and only used as part of another schema.
Fields§
§x16: Option<String>The URL of the 16x16 icon.
x32: Option<String>The URL of the 32x32 icon.
Trait Implementations§
Source§impl Clone for RestDescriptionIcons
impl Clone for RestDescriptionIcons
Source§fn clone(&self) -> RestDescriptionIcons
fn clone(&self) -> RestDescriptionIcons
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 RestDescriptionIcons
impl Debug for RestDescriptionIcons
Source§impl Default for RestDescriptionIcons
impl Default for RestDescriptionIcons
Source§fn default() -> RestDescriptionIcons
fn default() -> RestDescriptionIcons
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RestDescriptionIcons
impl<'de> Deserialize<'de> for RestDescriptionIcons
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 NestedType for RestDescriptionIcons
impl Part for RestDescriptionIcons
Auto Trait Implementations§
impl Freeze for RestDescriptionIcons
impl RefUnwindSafe for RestDescriptionIcons
impl Send for RestDescriptionIcons
impl Sync for RestDescriptionIcons
impl Unpin for RestDescriptionIcons
impl UnsafeUnpin for RestDescriptionIcons
impl UnwindSafe for RestDescriptionIcons
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