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