pub struct DatabaseTagUpdateRequest {
pub subscription_id: Option<i32>,
pub database_id: Option<i32>,
pub key: Option<String>,
pub value: String,
pub command_type: Option<String>,
pub extra: Value,
}
Expand description
Database tag update request message
Fields§
§subscription_id: Option<i32>
§database_id: Option<i32>
§key: Option<String>
§value: String
Database tag value
command_type: Option<String>
§extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for DatabaseTagUpdateRequest
impl Clone for DatabaseTagUpdateRequest
Source§fn clone(&self) -> DatabaseTagUpdateRequest
fn clone(&self) -> DatabaseTagUpdateRequest
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 DatabaseTagUpdateRequest
impl Debug for DatabaseTagUpdateRequest
Source§impl<'de> Deserialize<'de> for DatabaseTagUpdateRequest
impl<'de> Deserialize<'de> for DatabaseTagUpdateRequest
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
Auto Trait Implementations§
impl Freeze for DatabaseTagUpdateRequest
impl RefUnwindSafe for DatabaseTagUpdateRequest
impl Send for DatabaseTagUpdateRequest
impl Sync for DatabaseTagUpdateRequest
impl Unpin for DatabaseTagUpdateRequest
impl UnwindSafe for DatabaseTagUpdateRequest
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