Struct ttf_parser::Tag
source · #[repr(transparent)]pub struct Tag(pub u32);
Expand description
A 4-byte tag.
Tuple Fields§
§0: u32
Implementations§
source§impl Tag
impl Tag
sourcepub const fn from_bytes(bytes: &[u8; 4]) -> Self
pub const fn from_bytes(bytes: &[u8; 4]) -> Self
sourcepub fn from_bytes_lossy(bytes: &[u8]) -> Self
pub fn from_bytes_lossy(bytes: &[u8]) -> Self
Creates a Tag
from bytes.
In case of empty data will return Tag
set to 0.
When bytes
are shorter than 4, will set missing bytes to
.
Data after first 4 bytes is ignored.
Trait Implementations§
source§impl Ord for Tag
impl Ord for Tag
source§impl PartialOrd for Tag
impl PartialOrd for Tag
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Tag
impl Eq for Tag
impl StructuralPartialEq for Tag
Auto Trait Implementations§
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnwindSafe for Tag
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