pub struct DavAccount {
pub id: String,
pub created_at: String,
pub name: String,
pub uri: String,
pub password: String,
pub options: String,
}Expand description
WebDAV account information
Fields§
§id: String§created_at: String§name: String§uri: String§password: String§options: StringTrait Implementations§
Source§impl Clone for DavAccount
impl Clone for DavAccount
Source§fn clone(&self) -> DavAccount
fn clone(&self) -> DavAccount
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 DavAccount
impl Debug for DavAccount
Source§impl<'de> Deserialize<'de> for DavAccount
impl<'de> Deserialize<'de> for DavAccount
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 DavAccount
impl RefUnwindSafe for DavAccount
impl Send for DavAccount
impl Sync for DavAccount
impl Unpin for DavAccount
impl UnwindSafe for DavAccount
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