pub struct UnbindKeyRequest {
pub table_name: String,
pub all: bool,
pub key: Option<String>,
pub quiet: bool,
}Expand description
Request payload for unbind-key.
Fields§
§table_name: StringThe key table to update.
all: boolWhether every binding in the table should be removed.
key: Option<String>The optional key to remove.
quiet: boolWhether missing-table and missing-key diagnostics should be suppressed.
Trait Implementations§
Source§impl Clone for UnbindKeyRequest
impl Clone for UnbindKeyRequest
Source§fn clone(&self) -> UnbindKeyRequest
fn clone(&self) -> UnbindKeyRequest
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 Debug for UnbindKeyRequest
impl Debug for UnbindKeyRequest
Source§impl<'de> Deserialize<'de> for UnbindKeyRequest
impl<'de> Deserialize<'de> for UnbindKeyRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for UnbindKeyRequest
Source§impl PartialEq for UnbindKeyRequest
impl PartialEq for UnbindKeyRequest
Source§impl Serialize for UnbindKeyRequest
impl Serialize for UnbindKeyRequest
impl StructuralPartialEq for UnbindKeyRequest
Auto Trait Implementations§
impl Freeze for UnbindKeyRequest
impl RefUnwindSafe for UnbindKeyRequest
impl Send for UnbindKeyRequest
impl Sync for UnbindKeyRequest
impl Unpin for UnbindKeyRequest
impl UnsafeUnpin for UnbindKeyRequest
impl UnwindSafe for UnbindKeyRequest
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