pub struct DavAccount {
pub id: String,
pub name: String,
pub uri: Option<String>,
pub server: Option<String>,
pub password: Option<String>,
pub created_at: String,
}Expand description
Unified WebDAV account information
Fields§
§id: String§name: String§uri: Option<String>§server: Option<String>§password: Option<String>§created_at: 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 moreAuto 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