pub struct UserGroup {
pub id: i32,
pub name: String,
pub allow_share: bool,
pub allow_remote_download: bool,
pub allow_archive_download: bool,
pub share_download: bool,
pub compress: bool,
pub webdav: bool,
pub source_batch: i32,
pub advance_delete: bool,
pub allow_web_dav_proxy: bool,
}Expand description
User group information for v3 API
Fields§
§id: i32§name: String§allow_remote_download: bool§allow_archive_download: bool§compress: bool§webdav: bool§source_batch: i32§advance_delete: bool§allow_web_dav_proxy: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for UserGroup
impl<'de> Deserialize<'de> for UserGroup
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 UserGroup
impl RefUnwindSafe for UserGroup
impl Send for UserGroup
impl Sync for UserGroup
impl Unpin for UserGroup
impl UnwindSafe for UserGroup
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