pub struct UserRobotResponse {
pub id: Uuid,
pub priority: Option<i32>,
pub owner_id: Uuid,
pub robot_id: Uuid,
pub extra: Option<Vec<Extra>>,
pub skin: Option<Uuid>,
pub accessory: Option<Uuid>,
pub ver: Option<i32>,
}
Fields§
§id: Uuid
§priority: Option<i32>
§owner_id: Uuid
§robot_id: Uuid
§extra: Option<Vec<Extra>>
§skin: Option<Uuid>
§accessory: Option<Uuid>
§ver: Option<i32>
Trait Implementations§
Source§impl Clone for UserRobotResponse
impl Clone for UserRobotResponse
Source§fn clone(&self) -> UserRobotResponse
fn clone(&self) -> UserRobotResponse
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 UserRobotResponse
impl Debug for UserRobotResponse
Source§impl<'de> Deserialize<'de> for UserRobotResponse
impl<'de> Deserialize<'de> for UserRobotResponse
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 UserRobotResponse
impl RefUnwindSafe for UserRobotResponse
impl Send for UserRobotResponse
impl Sync for UserRobotResponse
impl Unpin for UserRobotResponse
impl UnwindSafe for UserRobotResponse
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