pub struct AppUserConsentModel {
pub id: Option<i64>,
pub create_date: Option<String>,
pub last_update: Option<String>,
pub grant_type: Option<Option<String>>,
pub redirect_uri: Option<Option<String>>,
pub remark: Option<Option<String>>,
pub scopes: Option<Option<String>>,
}Fields§
§id: Option<i64>§create_date: Option<String>§last_update: Option<String>§grant_type: Option<Option<String>>§redirect_uri: Option<Option<String>>§remark: Option<Option<String>>§scopes: Option<Option<String>>Implementations§
Source§impl AppUserConsentModel
impl AppUserConsentModel
pub fn new() -> AppUserConsentModel
Trait Implementations§
Source§impl Clone for AppUserConsentModel
impl Clone for AppUserConsentModel
Source§fn clone(&self) -> AppUserConsentModel
fn clone(&self) -> AppUserConsentModel
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 AppUserConsentModel
impl Debug for AppUserConsentModel
Source§impl Default for AppUserConsentModel
impl Default for AppUserConsentModel
Source§fn default() -> AppUserConsentModel
fn default() -> AppUserConsentModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppUserConsentModel
impl<'de> Deserialize<'de> for AppUserConsentModel
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 AppUserConsentModel
impl PartialEq for AppUserConsentModel
Source§impl Serialize for AppUserConsentModel
impl Serialize for AppUserConsentModel
impl StructuralPartialEq for AppUserConsentModel
Auto Trait Implementations§
impl Freeze for AppUserConsentModel
impl RefUnwindSafe for AppUserConsentModel
impl Send for AppUserConsentModel
impl Sync for AppUserConsentModel
impl Unpin for AppUserConsentModel
impl UnwindSafe for AppUserConsentModel
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