pub struct SkinResponse {
pub id: Uuid,
pub robot: Uuid,
pub name: String,
pub textures: Option<Vec<Textures>>,
pub image: String,
pub ver: Option<i32>,
}
Fields§
§id: Uuid
§robot: Uuid
§name: String
§textures: Option<Vec<Textures>>
§image: String
§ver: Option<i32>
Trait Implementations§
Source§impl Clone for SkinResponse
impl Clone for SkinResponse
Source§fn clone(&self) -> SkinResponse
fn clone(&self) -> SkinResponse
Returns a copy 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 SkinResponse
impl Debug for SkinResponse
Source§impl<'de> Deserialize<'de> for SkinResponse
impl<'de> Deserialize<'de> for SkinResponse
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 SkinResponse
impl RefUnwindSafe for SkinResponse
impl Send for SkinResponse
impl Sync for SkinResponse
impl Unpin for SkinResponse
impl UnwindSafe for SkinResponse
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