pub struct hb_ot_shape_normalize_context_t<'a> {
    pub plan: &'a hb_ot_shape_plan_t,
    pub buffer: &'a mut hb_buffer_t,
    pub face: &'a hb_font_t<'a>,
    pub decompose: fn(&hb_ot_shape_normalize_context_t<'_>, char) -> Option<(char, char)>,
    pub compose: fn(&hb_ot_shape_normalize_context_t<'_>, char, char) -> Option<char>,
}Fields§
§plan: &'a hb_ot_shape_plan_t§buffer: &'a mut hb_buffer_t§face: &'a hb_font_t<'a>§decompose: fn(&hb_ot_shape_normalize_context_t<'_>, char) -> Option<(char, char)>§compose: fn(&hb_ot_shape_normalize_context_t<'_>, char, char) -> Option<char>Implementations§
Auto Trait Implementations§
impl<'a> Freeze for hb_ot_shape_normalize_context_t<'a>
impl<'a> !RefUnwindSafe for hb_ot_shape_normalize_context_t<'a>
impl<'a> Send for hb_ot_shape_normalize_context_t<'a>
impl<'a> Sync for hb_ot_shape_normalize_context_t<'a>
impl<'a> Unpin for hb_ot_shape_normalize_context_t<'a>
impl<'a> !UnwindSafe for hb_ot_shape_normalize_context_t<'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