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