pub struct SystemInfo<'a> {
pub registry: Str<'a>,
pub ordering: Str<'a>,
pub supplement: i32,
}
Expand description
Specifics about a character collection.
Fields§
§registry: Str<'a>
The issuer of the collection.
ordering: Str<'a>
A unique name of the collection within the registry.
supplement: i32
The supplement number (i.e. the version).
Trait Implementations§
Source§impl<'a> Clone for SystemInfo<'a>
impl<'a> Clone for SystemInfo<'a>
Source§fn clone(&self) -> SystemInfo<'a>
fn clone(&self) -> SystemInfo<'a>
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<'a> Debug for SystemInfo<'a>
impl<'a> Debug for SystemInfo<'a>
Source§impl<'a> Hash for SystemInfo<'a>
impl<'a> Hash for SystemInfo<'a>
Source§impl<'a> PartialEq for SystemInfo<'a>
impl<'a> PartialEq for SystemInfo<'a>
impl<'a> Copy for SystemInfo<'a>
impl<'a> Eq for SystemInfo<'a>
impl<'a> StructuralPartialEq for SystemInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for SystemInfo<'a>
impl<'a> RefUnwindSafe for SystemInfo<'a>
impl<'a> Send for SystemInfo<'a>
impl<'a> Sync for SystemInfo<'a>
impl<'a> Unpin for SystemInfo<'a>
impl<'a> UnwindSafe for SystemInfo<'a>
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