pub struct AdminAuthRequestUpdateRequestModel {
pub encrypted_user_key: Option<String>,
pub request_approved: bool,
}
Fields§
§encrypted_user_key: Option<String>
§request_approved: bool
Implementations§
Source§impl AdminAuthRequestUpdateRequestModel
impl AdminAuthRequestUpdateRequestModel
pub fn new(request_approved: bool) -> AdminAuthRequestUpdateRequestModel
Trait Implementations§
Source§impl Clone for AdminAuthRequestUpdateRequestModel
impl Clone for AdminAuthRequestUpdateRequestModel
Source§fn clone(&self) -> AdminAuthRequestUpdateRequestModel
fn clone(&self) -> AdminAuthRequestUpdateRequestModel
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 Default for AdminAuthRequestUpdateRequestModel
impl Default for AdminAuthRequestUpdateRequestModel
Source§fn default() -> AdminAuthRequestUpdateRequestModel
fn default() -> AdminAuthRequestUpdateRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminAuthRequestUpdateRequestModel
impl<'de> Deserialize<'de> for AdminAuthRequestUpdateRequestModel
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
Source§impl PartialEq for AdminAuthRequestUpdateRequestModel
impl PartialEq for AdminAuthRequestUpdateRequestModel
Source§fn eq(&self, other: &AdminAuthRequestUpdateRequestModel) -> bool
fn eq(&self, other: &AdminAuthRequestUpdateRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AdminAuthRequestUpdateRequestModel
Auto Trait Implementations§
impl Freeze for AdminAuthRequestUpdateRequestModel
impl RefUnwindSafe for AdminAuthRequestUpdateRequestModel
impl Send for AdminAuthRequestUpdateRequestModel
impl Sync for AdminAuthRequestUpdateRequestModel
impl Unpin for AdminAuthRequestUpdateRequestModel
impl UnwindSafe for AdminAuthRequestUpdateRequestModel
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