pub struct Value {
pub format: ValueFormat,
pub x_placement: i16,
pub y_placement: i16,
pub x_advance: i16,
pub y_advance: i16,
pub x_placement_delta: i32,
pub y_placement_delta: i32,
pub x_advance_delta: i32,
pub y_advance_delta: i32,
}
Expand description
A fully resolved ValueRecord
.
Fields§
§format: ValueFormat
§x_placement: i16
§y_placement: i16
§x_advance: i16
§y_advance: i16
§x_placement_delta: i32
§y_placement_delta: i32
§x_advance_delta: i32
§y_advance_delta: i32
Implementations§
Trait Implementations§
impl Copy for Value
impl Eq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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