pub struct Placement {
pub additional_info: Option<String>,
pub rack: Option<String>,
pub rack_offset: Option<i64>,
pub rack_offset_units: Option<RackUnits>,
pub row: Option<String>,
}
Expand description
The placement within the addressed location.
Fields§
§additional_info: Option<String>
Area designation or other additional info.
rack: Option<String>
The name of a rack location within a row.
rack_offset: Option<i64>
The vertical location of the item, in terms of RackOffsetUnits.
rack_offset_units: Option<RackUnits>
§row: Option<String>
The name of the row.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Placement
impl<'de> Deserialize<'de> for Placement
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