pub struct DisableLigaturesCommandBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> DisableLigaturesCommandBuilder<S>
impl<S: State> DisableLigaturesCommandBuilder<S>
Sourcepub fn build(self) -> DisableLigaturesCommandwhere
S: IsComplete,
pub fn build(self) -> DisableLigaturesCommandwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn strategy(
self,
value: String,
) -> DisableLigaturesCommandBuilder<SetStrategy<S>>where
S::Strategy: IsUnset,
pub fn strategy(
self,
value: String,
) -> DisableLigaturesCommandBuilder<SetStrategy<S>>where
S::Strategy: IsUnset,
Sourcepub fn maybe_strategy(
self,
value: Option<String>,
) -> DisableLigaturesCommandBuilder<SetStrategy<S>>where
S::Strategy: IsUnset,
pub fn maybe_strategy(
self,
value: Option<String>,
) -> DisableLigaturesCommandBuilder<SetStrategy<S>>where
S::Strategy: IsUnset,
Sourcepub fn match_window(
self,
value: String,
) -> DisableLigaturesCommandBuilder<SetMatchWindow<S>>where
S::MatchWindow: IsUnset,
pub fn match_window(
self,
value: String,
) -> DisableLigaturesCommandBuilder<SetMatchWindow<S>>where
S::MatchWindow: IsUnset,
Sourcepub fn maybe_match_window(
self,
value: Option<String>,
) -> DisableLigaturesCommandBuilder<SetMatchWindow<S>>where
S::MatchWindow: IsUnset,
pub fn maybe_match_window(
self,
value: Option<String>,
) -> DisableLigaturesCommandBuilder<SetMatchWindow<S>>where
S::MatchWindow: IsUnset,
Sourcepub fn match_tab(
self,
value: String,
) -> DisableLigaturesCommandBuilder<SetMatchTab<S>>where
S::MatchTab: IsUnset,
pub fn match_tab(
self,
value: String,
) -> DisableLigaturesCommandBuilder<SetMatchTab<S>>where
S::MatchTab: IsUnset,
Sourcepub fn maybe_match_tab(
self,
value: Option<String>,
) -> DisableLigaturesCommandBuilder<SetMatchTab<S>>where
S::MatchTab: IsUnset,
pub fn maybe_match_tab(
self,
value: Option<String>,
) -> DisableLigaturesCommandBuilder<SetMatchTab<S>>where
S::MatchTab: IsUnset,
Sourcepub fn all(self, value: bool) -> DisableLigaturesCommandBuilder<SetAll<S>>where
S::All: IsUnset,
pub fn all(self, value: bool) -> DisableLigaturesCommandBuilder<SetAll<S>>where
S::All: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for DisableLigaturesCommandBuilder<S>
impl<S> RefUnwindSafe for DisableLigaturesCommandBuilder<S>
impl<S> Send for DisableLigaturesCommandBuilder<S>
impl<S> Sync for DisableLigaturesCommandBuilder<S>
impl<S> Unpin for DisableLigaturesCommandBuilder<S>
impl<S> UnwindSafe for DisableLigaturesCommandBuilder<S>
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