pub struct CloseWindowCommandBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> CloseWindowCommandBuilder<S>
impl<S: State> CloseWindowCommandBuilder<S>
Sourcepub fn build(self) -> CloseWindowCommandwhere
S: IsComplete,
pub fn build(self) -> CloseWindowCommandwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn match_spec(
self,
value: String,
) -> CloseWindowCommandBuilder<SetMatchSpec<S>>where
S::MatchSpec: IsUnset,
pub fn match_spec(
self,
value: String,
) -> CloseWindowCommandBuilder<SetMatchSpec<S>>where
S::MatchSpec: IsUnset,
Sourcepub fn maybe_match_spec(
self,
value: Option<String>,
) -> CloseWindowCommandBuilder<SetMatchSpec<S>>where
S::MatchSpec: IsUnset,
pub fn maybe_match_spec(
self,
value: Option<String>,
) -> CloseWindowCommandBuilder<SetMatchSpec<S>>where
S::MatchSpec: IsUnset,
Sourcepub fn self_window(
self,
value: bool,
) -> CloseWindowCommandBuilder<SetSelfWindow<S>>where
S::SelfWindow: IsUnset,
pub fn self_window(
self,
value: bool,
) -> CloseWindowCommandBuilder<SetSelfWindow<S>>where
S::SelfWindow: IsUnset,
Sourcepub fn maybe_self_window(
self,
value: Option<bool>,
) -> CloseWindowCommandBuilder<SetSelfWindow<S>>where
S::SelfWindow: IsUnset,
pub fn maybe_self_window(
self,
value: Option<bool>,
) -> CloseWindowCommandBuilder<SetSelfWindow<S>>where
S::SelfWindow: IsUnset,
Sourcepub fn ignore_no_match(
self,
value: bool,
) -> CloseWindowCommandBuilder<SetIgnoreNoMatch<S>>where
S::IgnoreNoMatch: IsUnset,
pub fn ignore_no_match(
self,
value: bool,
) -> CloseWindowCommandBuilder<SetIgnoreNoMatch<S>>where
S::IgnoreNoMatch: IsUnset,
Sourcepub fn maybe_ignore_no_match(
self,
value: Option<bool>,
) -> CloseWindowCommandBuilder<SetIgnoreNoMatch<S>>where
S::IgnoreNoMatch: IsUnset,
pub fn maybe_ignore_no_match(
self,
value: Option<bool>,
) -> CloseWindowCommandBuilder<SetIgnoreNoMatch<S>>where
S::IgnoreNoMatch: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for CloseWindowCommandBuilder<S>
impl<S> RefUnwindSafe for CloseWindowCommandBuilder<S>
impl<S> Send for CloseWindowCommandBuilder<S>
impl<S> Sync for CloseWindowCommandBuilder<S>
impl<S> Unpin for CloseWindowCommandBuilder<S>
impl<S> UnwindSafe for CloseWindowCommandBuilder<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