pub struct SetWindowTitleCommandBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> SetWindowTitleCommandBuilder<S>
impl<S: State> SetWindowTitleCommandBuilder<S>
Sourcepub fn build(self) -> SetWindowTitleCommandwhere
S: IsComplete,
pub fn build(self) -> SetWindowTitleCommandwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn title(self, value: String) -> SetWindowTitleCommandBuilder<SetTitle<S>>where
S::Title: IsUnset,
pub fn title(self, value: String) -> SetWindowTitleCommandBuilder<SetTitle<S>>where
S::Title: IsUnset,
Required.
Sourcepub fn match_spec(
self,
value: String,
) -> SetWindowTitleCommandBuilder<SetMatchSpec<S>>where
S::MatchSpec: IsUnset,
pub fn match_spec(
self,
value: String,
) -> SetWindowTitleCommandBuilder<SetMatchSpec<S>>where
S::MatchSpec: IsUnset,
Sourcepub fn maybe_match_spec(
self,
value: Option<String>,
) -> SetWindowTitleCommandBuilder<SetMatchSpec<S>>where
S::MatchSpec: IsUnset,
pub fn maybe_match_spec(
self,
value: Option<String>,
) -> SetWindowTitleCommandBuilder<SetMatchSpec<S>>where
S::MatchSpec: IsUnset,
Sourcepub fn temporary(
self,
value: bool,
) -> SetWindowTitleCommandBuilder<SetTemporary<S>>where
S::Temporary: IsUnset,
pub fn temporary(
self,
value: bool,
) -> SetWindowTitleCommandBuilder<SetTemporary<S>>where
S::Temporary: IsUnset,
Sourcepub fn maybe_temporary(
self,
value: Option<bool>,
) -> SetWindowTitleCommandBuilder<SetTemporary<S>>where
S::Temporary: IsUnset,
pub fn maybe_temporary(
self,
value: Option<bool>,
) -> SetWindowTitleCommandBuilder<SetTemporary<S>>where
S::Temporary: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for SetWindowTitleCommandBuilder<S>
impl<S> RefUnwindSafe for SetWindowTitleCommandBuilder<S>
impl<S> Send for SetWindowTitleCommandBuilder<S>
impl<S> Sync for SetWindowTitleCommandBuilder<S>
impl<S> Unpin for SetWindowTitleCommandBuilder<S>
impl<S> UnwindSafe for SetWindowTitleCommandBuilder<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