pub struct UpdateGroup {Show 16 fields
pub group_id: Uuid,
pub name: Option<Option<String>>,
pub leader: Option<Option<Uuid>>,
pub website: Option<Option<String>>,
pub irc_server: Option<Option<String>>,
pub irc_channel: Option<Option<String>>,
pub discord: Option<Option<String>>,
pub contact_email: Option<Option<String>>,
pub description: Option<Option<String>>,
pub twitter: Option<Option<Url>>,
pub manga_updates: Option<Option<Url>>,
pub focused_languages: Option<Vec<Language>>,
pub inactive: Option<bool>,
pub locked: Option<bool>,
pub publish_delay: Option<MangaDexDuration>,
pub version: u32,
/* private fields */
}
Fields§
§group_id: Uuid
§name: Option<Option<String>>
§leader: Option<Option<Uuid>>
§website: Option<Option<String>>
Nullable.
irc_server: Option<Option<String>>
Nullable.
irc_channel: Option<Option<String>>
Nullable.
discord: Option<Option<String>>
Nullable.
contact_email: Option<Option<String>>
Nullable.
description: Option<Option<String>>
Nullable.
twitter: Option<Option<Url>>
Nullable.
manga_updates: Option<Option<Url>>
Regex: ^https://www.mangaupdates.com/(?:groups|publishers).html?id=\d+
Nullable.
focused_languages: Option<Vec<Language>>
Languages the scanlation primarily translates or uploads works into.
Nullable.
inactive: Option<bool>
§locked: Option<bool>
§publish_delay: Option<MangaDexDuration>
§version: u32
= 1
Implementations§
Trait Implementations§
Source§impl Clone for UpdateGroup
impl Clone for UpdateGroup
Source§fn clone(&self) -> UpdateGroup
fn clone(&self) -> UpdateGroup
Returns a copy 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 UpdateGroup
impl Debug for UpdateGroup
Auto Trait Implementations§
impl Freeze for UpdateGroup
impl !RefUnwindSafe for UpdateGroup
impl !Send for UpdateGroup
impl !Sync for UpdateGroup
impl Unpin for UpdateGroup
impl !UnwindSafe for UpdateGroup
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