pub struct GetRobotSoftwareVersionResponse {
pub major: u32,
pub minor: u32,
pub bugfix: u32,
pub build: u32,
}Fields§
§major: u32§minor: u32§bugfix: u32§build: u32Trait Implementations§
Source§impl Clone for GetRobotSoftwareVersionResponse
impl Clone for GetRobotSoftwareVersionResponse
Source§fn clone(&self) -> GetRobotSoftwareVersionResponse
fn clone(&self) -> GetRobotSoftwareVersionResponse
Returns a duplicate 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<'de> Deserialize<'de> for GetRobotSoftwareVersionResponse
impl<'de> Deserialize<'de> for GetRobotSoftwareVersionResponse
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
Source§impl PartialEq for GetRobotSoftwareVersionResponse
impl PartialEq for GetRobotSoftwareVersionResponse
Source§fn eq(&self, other: &GetRobotSoftwareVersionResponse) -> bool
fn eq(&self, other: &GetRobotSoftwareVersionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Message for GetRobotSoftwareVersionResponse
impl StructuralPartialEq for GetRobotSoftwareVersionResponse
Auto Trait Implementations§
impl Freeze for GetRobotSoftwareVersionResponse
impl RefUnwindSafe for GetRobotSoftwareVersionResponse
impl Send for GetRobotSoftwareVersionResponse
impl Sync for GetRobotSoftwareVersionResponse
impl Unpin for GetRobotSoftwareVersionResponse
impl UnwindSafe for GetRobotSoftwareVersionResponse
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