pub struct Workspace {
pub workspace_id: Option<String>,
pub workspace_type: Option<String>,
pub within_bounds: Option<bool>,
pub distance_to_boundary_m: Option<f64>,
pub reachability: Option<f64>,
}Expand description
Workspace information.
Fields§
§workspace_id: Option<String>Workspace ID
workspace_type: Option<String>Workspace type
within_bounds: Option<bool>Whether arm is within workspace bounds
distance_to_boundary_m: Option<f64>Distance to workspace boundary (m)
reachability: Option<f64>Reachability to target (0-1)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Workspace
impl<'de> Deserialize<'de> for Workspace
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 Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin for Workspace
impl UnwindSafe for Workspace
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