pub struct CreateServerOption {
pub key: Ident,
pub value: Ident,
}Expand description
A key/value option for CREATE SERVER.
Fields§
§key: IdentOption key identifier.
value: IdentOption value identifier.
Trait Implementations§
Source§impl Clone for CreateServerOption
impl Clone for CreateServerOption
Source§fn clone(&self) -> CreateServerOption
fn clone(&self) -> CreateServerOption
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateServerOption
impl Debug for CreateServerOption
Source§impl Display for CreateServerOption
impl Display for CreateServerOption
Source§impl Hash for CreateServerOption
impl Hash for CreateServerOption
Source§impl Ord for CreateServerOption
impl Ord for CreateServerOption
Source§fn cmp(&self, other: &CreateServerOption) -> Ordering
fn cmp(&self, other: &CreateServerOption) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CreateServerOption
impl PartialEq for CreateServerOption
Source§impl PartialOrd for CreateServerOption
impl PartialOrd for CreateServerOption
Source§impl Visit for CreateServerOption
impl Visit for CreateServerOption
Source§impl VisitMut for CreateServerOption
impl VisitMut for CreateServerOption
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for CreateServerOption
impl StructuralPartialEq for CreateServerOption
Auto Trait Implementations§
impl Freeze for CreateServerOption
impl RefUnwindSafe for CreateServerOption
impl Send for CreateServerOption
impl Sync for CreateServerOption
impl Unpin for CreateServerOption
impl UnsafeUnpin for CreateServerOption
impl UnwindSafe for CreateServerOption
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