Struct write_fonts::tables::layout::ClassSequenceRuleSet
source · pub struct ClassSequenceRuleSet {
pub class_seq_rules: Vec<OffsetMarker<ClassSequenceRule>>,
}Expand description
Part of SequenceContextFormat2
Fields§
§class_seq_rules: Vec<OffsetMarker<ClassSequenceRule>>Array of offsets to ClassSequenceRule tables, from beginning of ClassSequenceRuleSet table
Implementations§
source§impl ClassSequenceRuleSet
impl ClassSequenceRuleSet
sourcepub fn new(class_seq_rules: Vec<ClassSequenceRule>) -> Self
pub fn new(class_seq_rules: Vec<ClassSequenceRule>) -> Self
Construct a new ClassSequenceRuleSet
Trait Implementations§
source§impl Clone for ClassSequenceRuleSet
impl Clone for ClassSequenceRuleSet
source§fn clone(&self) -> ClassSequenceRuleSet
fn clone(&self) -> ClassSequenceRuleSet
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 ClassSequenceRuleSet
impl Debug for ClassSequenceRuleSet
source§impl Default for ClassSequenceRuleSet
impl Default for ClassSequenceRuleSet
source§fn default() -> ClassSequenceRuleSet
fn default() -> ClassSequenceRuleSet
Returns the “default value” for a type. Read more
source§impl<'a> FontRead<'a> for ClassSequenceRuleSet
impl<'a> FontRead<'a> for ClassSequenceRuleSet
source§impl FontWrite for ClassSequenceRuleSet
impl FontWrite for ClassSequenceRuleSet
source§fn write_into(&self, writer: &mut TableWriter)
fn write_into(&self, writer: &mut TableWriter)
Write our data and information about offsets into this TableWriter.
fn name(&self) -> &'static str
source§impl Validate for ClassSequenceRuleSet
impl Validate for ClassSequenceRuleSet
source§fn validate_impl(&self, ctx: &mut ValidationCtx)
fn validate_impl(&self, ctx: &mut ValidationCtx)
Validate this table. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ClassSequenceRuleSet
impl Send for ClassSequenceRuleSet
impl Sync for ClassSequenceRuleSet
impl Unpin for ClassSequenceRuleSet
impl UnwindSafe for ClassSequenceRuleSet
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<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.