pub struct TagUserRequest {
pub tags: Vec<Tag>,
pub user_name: String,
}
Fields§
The list of tags that you want to attach to the user. Each tag consists of a key name and an associated value.
user_name: String
The name of the user that you want to add tags to.
This parameter accepts (through its regex pattern) a string of characters that consist of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
Trait Implementations§
Source§impl Clone for TagUserRequest
impl Clone for TagUserRequest
Source§fn clone(&self) -> TagUserRequest
fn clone(&self) -> TagUserRequest
Returns a copy 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 TagUserRequest
impl Debug for TagUserRequest
Source§impl Default for TagUserRequest
impl Default for TagUserRequest
Source§fn default() -> TagUserRequest
fn default() -> TagUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for TagUserRequest
impl PartialEq for TagUserRequest
impl StructuralPartialEq for TagUserRequest
Auto Trait Implementations§
impl Freeze for TagUserRequest
impl RefUnwindSafe for TagUserRequest
impl Send for TagUserRequest
impl Sync for TagUserRequest
impl Unpin for TagUserRequest
impl UnwindSafe for TagUserRequest
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