pub struct ScanlationGroupAttributes {Show 19 fields
pub name: String,
pub alt_names: Vec<LocalizedString>,
pub website: Option<String>,
pub irc_server: Option<String>,
pub discord: Option<String>,
pub contact_email: Option<String>,
pub description: Option<String>,
pub twitter: Option<String>,
pub manga_updates: Option<String>,
pub focused_language: Option<Vec<Locale>>,
pub locked: bool,
pub official: bool,
pub verified: bool,
pub inactive: bool,
pub ex_licensed: bool,
pub publish_delay: Option<String>,
pub version: usize,
pub created_at: String,
pub updated_at: String,
}
Expand description
Used for serialization/deserialization
Fields§
§name: String
§alt_names: Vec<LocalizedString>
§website: Option<String>
§irc_server: Option<String>
§discord: Option<String>
§contact_email: Option<String>
§description: Option<String>
§twitter: Option<String>
§manga_updates: Option<String>
§focused_language: Option<Vec<Locale>>
§locked: bool
§official: bool
§verified: bool
§inactive: bool
§ex_licensed: bool
§publish_delay: Option<String>
§version: usize
§created_at: String
§updated_at: String
Trait Implementations§
Source§impl Clone for ScanlationGroupAttributes
impl Clone for ScanlationGroupAttributes
Source§fn clone(&self) -> ScanlationGroupAttributes
fn clone(&self) -> ScanlationGroupAttributes
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 ScanlationGroupAttributes
impl Debug for ScanlationGroupAttributes
Source§impl<'de> Deserialize<'de> for ScanlationGroupAttributes
impl<'de> Deserialize<'de> for ScanlationGroupAttributes
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 ScanlationGroupAttributes
impl RefUnwindSafe for ScanlationGroupAttributes
impl Send for ScanlationGroupAttributes
impl Sync for ScanlationGroupAttributes
impl Unpin for ScanlationGroupAttributes
impl UnwindSafe for ScanlationGroupAttributes
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