pub enum TextBlockEvent {
Start(TextBlockStart),
Delta(String),
Stop(TextBlockStop),
}Expand description
テキストブロックのイベント
Variants§
Trait Implementations§
Source§impl Clone for TextBlockEvent
impl Clone for TextBlockEvent
Source§fn clone(&self) -> TextBlockEvent
fn clone(&self) -> TextBlockEvent
Returns a duplicate 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 TextBlockEvent
impl Debug for TextBlockEvent
Source§impl PartialEq for TextBlockEvent
impl PartialEq for TextBlockEvent
impl StructuralPartialEq for TextBlockEvent
Auto Trait Implementations§
impl Freeze for TextBlockEvent
impl RefUnwindSafe for TextBlockEvent
impl Send for TextBlockEvent
impl Sync for TextBlockEvent
impl Unpin for TextBlockEvent
impl UnwindSafe for TextBlockEvent
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