pub struct SetOptions {
pub span: Span,
pub content: Vec<SetOption>,
}Expand description
A sequence of set-option-s.
Fields§
§span: SpanSpan of the set_option! keyword.
content: Vec<SetOption>Sequence of set-options-s.
Implementations§
Trait Implementations§
Source§impl Clone for SetOptions
impl Clone for SetOptions
Source§fn clone(&self) -> SetOptions
fn clone(&self) -> SetOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CommandExt for SetOptions
impl CommandExt for SetOptions
Source§impl Debug for SetOptions
impl Debug for SetOptions
Source§impl<E, ME> From<SetOptions> for Command<E, ME>
impl<E, ME> From<SetOptions> for Command<E, ME>
Source§fn from(l: SetOptions) -> Self
fn from(l: SetOptions) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetOptions
impl PartialEq for SetOptions
Source§fn eq(&self, other: &SetOptions) -> bool
fn eq(&self, other: &SetOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SetOptions
impl StructuralPartialEq for SetOptions
Auto Trait Implementations§
impl Freeze for SetOptions
impl RefUnwindSafe for SetOptions
impl Send for SetOptions
impl Sync for SetOptions
impl Unpin for SetOptions
impl UnsafeUnpin for SetOptions
impl UnwindSafe for SetOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more