pub struct LibraryPack {
pub id: String,
pub version: Option<String>,
pub source: PackSource,
pub items: Vec<PackItem>,
}Expand description
A loaded library pack: its identity plus the items it provides.
Fields§
§id: StringThe package id, parsed from the pack’s library self-entry.
version: Option<String>The pack version, parsed from the pack’s library self-entry.
source: PackSourceWhere the pack came from.
items: Vec<PackItem>The items the pack provides: component ids first (in source order), then exportable token ids (in source order), then action ids (in source order).
Trait Implementations§
Source§impl Clone for LibraryPack
impl Clone for LibraryPack
Source§fn clone(&self) -> LibraryPack
fn clone(&self) -> LibraryPack
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LibraryPack
impl Debug for LibraryPack
impl Eq for LibraryPack
Source§impl PartialEq for LibraryPack
impl PartialEq for LibraryPack
Source§fn eq(&self, other: &LibraryPack) -> bool
fn eq(&self, other: &LibraryPack) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LibraryPack
Auto Trait Implementations§
impl Freeze for LibraryPack
impl RefUnwindSafe for LibraryPack
impl Send for LibraryPack
impl Sync for LibraryPack
impl Unpin for LibraryPack
impl UnsafeUnpin for LibraryPack
impl UnwindSafe for LibraryPack
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.