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