pub struct BitmapFontProperties {
pub horizontal_distance: i32,
pub vertical_size: i32,
pub letters: HashMap<char, FontLetter>,
}Fields§
§horizontal_distance: i32§vertical_size: i32§letters: HashMap<char, FontLetter>Trait Implementations§
Source§impl Clone for BitmapFontProperties
impl Clone for BitmapFontProperties
Source§fn clone(&self) -> BitmapFontProperties
fn clone(&self) -> BitmapFontProperties
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BitmapFontProperties
impl Debug for BitmapFontProperties
Source§impl<'de> Deserialize<'de> for BitmapFontProperties
impl<'de> Deserialize<'de> for BitmapFontProperties
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 BitmapFontProperties
impl RefUnwindSafe for BitmapFontProperties
impl Send for BitmapFontProperties
impl Sync for BitmapFontProperties
impl Unpin for BitmapFontProperties
impl UnwindSafe for BitmapFontProperties
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