pub struct SpacingOptions {
pub punctuations: bool,
}
Fields§
§punctuations: bool
Trait Implementations§
Source§impl Clone for SpacingOptions
impl Clone for SpacingOptions
Source§fn clone(&self) -> SpacingOptions
fn clone(&self) -> SpacingOptions
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 SpacingOptions
impl Debug for SpacingOptions
Source§impl From<SpacingOptions> for JsValue
impl From<SpacingOptions> for JsValue
Source§fn from(value: SpacingOptions) -> Self
fn from(value: SpacingOptions) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for SpacingOptions
impl FromWasmAbi for SpacingOptions
Source§impl IntoWasmAbi for SpacingOptions
impl IntoWasmAbi for SpacingOptions
Source§impl LongRefFromWasmAbi for SpacingOptions
impl LongRefFromWasmAbi for SpacingOptions
Source§impl OptionFromWasmAbi for SpacingOptions
impl OptionFromWasmAbi for SpacingOptions
Source§impl OptionIntoWasmAbi for SpacingOptions
impl OptionIntoWasmAbi for SpacingOptions
Source§impl RefFromWasmAbi for SpacingOptions
impl RefFromWasmAbi for SpacingOptions
Source§type Anchor = RcRef<SpacingOptions>
type Anchor = RcRef<SpacingOptions>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl RefMutFromWasmAbi for SpacingOptions
impl RefMutFromWasmAbi for SpacingOptions
Source§impl TryFromJsValue for SpacingOptions
impl TryFromJsValue for SpacingOptions
Source§impl VectorFromWasmAbi for SpacingOptions
impl VectorFromWasmAbi for SpacingOptions
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[SpacingOptions]>
Source§impl VectorIntoJsValue for SpacingOptions
impl VectorIntoJsValue for SpacingOptions
fn vector_into_jsvalue(vector: Box<[SpacingOptions]>) -> JsValue
Source§impl VectorIntoWasmAbi for SpacingOptions
impl VectorIntoWasmAbi for SpacingOptions
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[SpacingOptions]>) -> Self::Abi
Source§impl WasmDescribeVector for SpacingOptions
impl WasmDescribeVector for SpacingOptions
impl Copy for SpacingOptions
impl SupportsConstructor for SpacingOptions
impl SupportsInstanceProperty for SpacingOptions
impl SupportsStaticProperty for SpacingOptions
Auto Trait Implementations§
impl Freeze for SpacingOptions
impl RefUnwindSafe for SpacingOptions
impl Send for SpacingOptions
impl Sync for SpacingOptions
impl Unpin for SpacingOptions
impl UnwindSafe for SpacingOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.