pub struct ImeSetCompositionBuilder { /* private fields */ }Expand description
Builder for ImeSetComposition.
Implementations§
Source§impl ImeSetCompositionBuilder
impl ImeSetCompositionBuilder
Sourcepub fn selection_start<VALUE: Into<JsUInt>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn selection_start<VALUE: Into<JsUInt>>( &mut self, value: VALUE, ) -> &mut Self
selection start
Sourcepub fn selection_end<VALUE: Into<JsUInt>>(&mut self, value: VALUE) -> &mut Self
pub fn selection_end<VALUE: Into<JsUInt>>(&mut self, value: VALUE) -> &mut Self
selection end
Sourcepub fn replacement_start<VALUE: Into<JsUInt>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn replacement_start<VALUE: Into<JsUInt>>( &mut self, value: VALUE, ) -> &mut Self
replacement start
Sourcepub fn replacement_end<VALUE: Into<JsUInt>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn replacement_end<VALUE: Into<JsUInt>>( &mut self, value: VALUE, ) -> &mut Self
replacement end
Sourcepub fn build(&self) -> Result<ImeSetComposition, ImeSetCompositionBuilderError>
pub fn build(&self) -> Result<ImeSetComposition, ImeSetCompositionBuilderError>
Trait Implementations§
Source§impl Clone for ImeSetCompositionBuilder
impl Clone for ImeSetCompositionBuilder
Source§fn clone(&self) -> ImeSetCompositionBuilder
fn clone(&self) -> ImeSetCompositionBuilder
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 moreAuto Trait Implementations§
impl Freeze for ImeSetCompositionBuilder
impl RefUnwindSafe for ImeSetCompositionBuilder
impl Send for ImeSetCompositionBuilder
impl Sync for ImeSetCompositionBuilder
impl Unpin for ImeSetCompositionBuilder
impl UnsafeUnpin for ImeSetCompositionBuilder
impl UnwindSafe for ImeSetCompositionBuilder
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