pub struct StartBox {
pub bottom: f64,
pub left: f64,
pub right: f64,
pub top: f64,
}Expand description
StartBox
JSON schema
{
"type": "object",
"required": [
"bottom",
"left",
"right",
"top"
],
"properties": {
"bottom": {
"type": "number",
"maximum": 1.0,
"minimum": 0.0
},
"left": {
"type": "number",
"maximum": 1.0,
"minimum": 0.0
},
"right": {
"type": "number",
"maximum": 1.0,
"minimum": 0.0
},
"top": {
"type": "number",
"maximum": 1.0,
"minimum": 0.0
}
}
}Fields§
§bottom: f64§left: f64§right: f64§top: f64Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StartBox
impl<'de> Deserialize<'de> for StartBox
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 StartBox
impl RefUnwindSafe for StartBox
impl Send for StartBox
impl Sync for StartBox
impl Unpin for StartBox
impl UnsafeUnpin for StartBox
impl UnwindSafe for StartBox
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