pub struct RobotProgramResponse {
pub id: Uuid,
pub user_robot_id: Uuid,
pub labyrinth_id: Uuid,
pub title: String,
pub listing: String,
pub ver: Option<i32>,
}
Fields§
§id: Uuid
§user_robot_id: Uuid
§labyrinth_id: Uuid
§title: String
§listing: String
§ver: Option<i32>
Trait Implementations§
Source§impl Clone for RobotProgramResponse
impl Clone for RobotProgramResponse
Source§fn clone(&self) -> RobotProgramResponse
fn clone(&self) -> RobotProgramResponse
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 RobotProgramResponse
impl Debug for RobotProgramResponse
Source§impl<'de> Deserialize<'de> for RobotProgramResponse
impl<'de> Deserialize<'de> for RobotProgramResponse
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 RobotProgramResponse
impl RefUnwindSafe for RobotProgramResponse
impl Send for RobotProgramResponse
impl Sync for RobotProgramResponse
impl Unpin for RobotProgramResponse
impl UnwindSafe for RobotProgramResponse
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