pub struct ServiceSpecificCredential {
pub credential_id: String,
pub user_name: String,
pub service_name: String,
pub service_user_name: String,
pub service_password: String,
pub status: String,
pub create_date: DateTime<Utc>,
}Fields§
§credential_id: String§user_name: String§service_name: String§service_user_name: String§service_password: String§status: String§create_date: DateTime<Utc>Trait Implementations§
Source§impl Clone for ServiceSpecificCredential
impl Clone for ServiceSpecificCredential
Source§fn clone(&self) -> ServiceSpecificCredential
fn clone(&self) -> ServiceSpecificCredential
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ServiceSpecificCredential
impl Debug for ServiceSpecificCredential
Source§impl<'de> Deserialize<'de> for ServiceSpecificCredential
impl<'de> Deserialize<'de> for ServiceSpecificCredential
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 ServiceSpecificCredential
impl RefUnwindSafe for ServiceSpecificCredential
impl Send for ServiceSpecificCredential
impl Sync for ServiceSpecificCredential
impl Unpin for ServiceSpecificCredential
impl UnsafeUnpin for ServiceSpecificCredential
impl UnwindSafe for ServiceSpecificCredential
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