pub struct WebdavAccount {
pub id: i32,
pub name: String,
pub uri: String,
pub password: String,
pub created_at: String,
}Expand description
WebDAV account information for v3 API
Fields§
§id: i32§name: String§uri: String§password: String§created_at: StringTrait Implementations§
Source§impl Debug for WebdavAccount
impl Debug for WebdavAccount
Source§impl<'de> Deserialize<'de> for WebdavAccount
impl<'de> Deserialize<'de> for WebdavAccount
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 WebdavAccount
impl RefUnwindSafe for WebdavAccount
impl Send for WebdavAccount
impl Sync for WebdavAccount
impl Unpin for WebdavAccount
impl UnwindSafe for WebdavAccount
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