pub struct LinebreakRequest<'a> {
pub font: i32,
pub locale: i32,
pub text: &'a [u16],
}Expand description
Parameters for a host driven line break request passed to the platform.
Fields§
§font: i32Generated engine font identifier active for the text.
locale: i32Generated engine locale identifier active for the text.
text: &'a [u16]Text slice owned by generated engine memory for this call.
Trait Implementations§
Source§impl<'a> Clone for LinebreakRequest<'a>
impl<'a> Clone for LinebreakRequest<'a>
impl<'a> Copy for LinebreakRequest<'a>
Source§impl<'a> Debug for LinebreakRequest<'a>
impl<'a> Debug for LinebreakRequest<'a>
impl<'a> Eq for LinebreakRequest<'a>
Source§impl<'a> PartialEq for LinebreakRequest<'a>
impl<'a> PartialEq for LinebreakRequest<'a>
impl<'a> StructuralPartialEq for LinebreakRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for LinebreakRequest<'a>
impl<'a> RefUnwindSafe for LinebreakRequest<'a>
impl<'a> Send for LinebreakRequest<'a>
impl<'a> Sync for LinebreakRequest<'a>
impl<'a> Unpin for LinebreakRequest<'a>
impl<'a> UnsafeUnpin for LinebreakRequest<'a>
impl<'a> UnwindSafe for LinebreakRequest<'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