pub struct FcfFrame {
pub characteristic: String,
pub symbol: String,
pub zone: String,
pub datums: Vec<String>,
}Expand description
The cells of a feature control frame.
Fields§
§characteristic: StringThe characteristic id (flatness, position, …).
symbol: StringIts Unicode symbol (the glyph key).
zone: StringThe tolerance cell text (⌀0.1 Ⓜ).
datums: Vec<String>The datum reference cells (A, B Ⓜ).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FcfFrame
impl<'de> Deserialize<'de> for FcfFrame
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
impl StructuralPartialEq for FcfFrame
Auto Trait Implementations§
impl Freeze for FcfFrame
impl RefUnwindSafe for FcfFrame
impl Send for FcfFrame
impl Sync for FcfFrame
impl Unpin for FcfFrame
impl UnsafeUnpin for FcfFrame
impl UnwindSafe for FcfFrame
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