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