Type Alias freya_engine::prelude::ParagraphBuilder

pub type ParagraphBuilder = RefHandle<skia_textlayout_ParagraphBuilder>;

Aliased Type§

struct ParagraphBuilder(/* private fields */);

Implementations

§

impl RefHandle<skia_textlayout_ParagraphBuilder>

pub fn push_style( &mut self, style: &Handle<skia_textlayout_TextStyle>, ) -> &mut RefHandle<skia_textlayout_ParagraphBuilder>

pub fn pop(&mut self) -> &mut RefHandle<skia_textlayout_ParagraphBuilder>

pub fn peek_style(&mut self) -> Handle<skia_textlayout_TextStyle>

pub fn add_text( &mut self, str: impl AsRef<str>, ) -> &mut RefHandle<skia_textlayout_ParagraphBuilder>

pub fn add_placeholder( &mut self, placeholder_style: &PlaceholderStyle, ) -> &mut RefHandle<skia_textlayout_ParagraphBuilder>

pub fn build(&mut self) -> RefHandle<skia_textlayout_Paragraph>

pub fn get_text(&mut self) -> &str

pub fn get_paragraph_style(&self) -> RefHandle<skia_textlayout_ParagraphStyle>

pub fn reset(&mut self)

pub fn new( style: &RefHandle<skia_textlayout_ParagraphStyle>, font_collection: impl Into<RCHandle<skia_textlayout_FontCollection>>, ) -> RefHandle<skia_textlayout_ParagraphBuilder>

Trait Implementations

§

impl Debug for RefHandle<skia_textlayout_ParagraphBuilder>

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<N> Drop for RefHandle<N>
where N: NativeDrop,

§

fn drop(&mut self)

Executes the destructor for this type. Read more
§

impl<N> PartialEq for RefHandle<N>
where N: NativeDrop + NativePartialEq,

§

fn eq(&self, rhs: &RefHandle<N>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<N> PointerWrapper<N> for RefHandle<N>
where N: NativeDrop,

§

fn wrap(ptr: *mut N) -> Option<RefHandle<N>>

Wraps a native pointer into a wrapper type. Returns None if the pointer is null.
§

fn unwrap(self) -> *mut N

Unwraps the wrapper type into the native pointer.
§

fn inner(&self) -> &N

Access the wrapped pointer.
§

fn inner_mut(&mut self) -> &mut N

Access the wrapped pointer.
§

impl<T> RunIterator for RefHandle<T>
where T: NativeDrop + NativeBase<SkShaper_RunIterator>,

§

fn consume(&mut self)

§

fn end_of_current_run(&self) -> usize

§

fn at_end(&self) -> bool

§

impl Send for RefHandle<skia_textlayout_ParagraphBuilder>

§

impl Sync for RefHandle<skia_textlayout_ParagraphBuilder>