pub struct Context<'a, 'b, 'c>where
'b: 'a,
'c: 'a,{
pub input: &'c InputTemplate,
pub binary: &'c [u8],
pub pre_subset_result: Vec<Vec<u32>>,
pub run_subset_result: Vec<RunSubsetResult>,
pub name_table: NameTableSets,
pub face: &'a mut Owned<Face<'b>>,
pub callback: &'a dyn Fn(EventMessage),
pub reporter: &'a mut OutputReport,
pub fvar_table: Option<FvarTable>,
}Fields§
§input: &'c InputTemplate§binary: &'c [u8]§pre_subset_result: Vec<Vec<u32>>§run_subset_result: Vec<RunSubsetResult>§name_table: NameTableSets§face: &'a mut Owned<Face<'b>>§callback: &'a dyn Fn(EventMessage)§reporter: &'a mut OutputReport§fvar_table: Option<FvarTable>Auto Trait Implementations§
impl<'a, 'b, 'c> Freeze for Context<'a, 'b, 'c>
impl<'a, 'b, 'c> !RefUnwindSafe for Context<'a, 'b, 'c>
impl<'a, 'b, 'c> !Send for Context<'a, 'b, 'c>
impl<'a, 'b, 'c> !Sync for Context<'a, 'b, 'c>
impl<'a, 'b, 'c> Unpin for Context<'a, 'b, 'c>
impl<'a, 'b, 'c> !UnwindSafe for Context<'a, 'b, 'c>
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> 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 more