pub struct ScanlationGroup {
pub id: String,
pub entity_type: EntityType,
pub attributes: ScanlationGroupAttributes,
pub relationships: Vec<Relationship>,
}
Expand description
Main structure used for representing the response containg scanlation group info
Fields§
§id: String
§entity_type: EntityType
§attributes: ScanlationGroupAttributes
§relationships: Vec<Relationship>
Trait Implementations§
Source§impl Clone for ScanlationGroup
impl Clone for ScanlationGroup
Source§fn clone(&self) -> ScanlationGroup
fn clone(&self) -> ScanlationGroup
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 ScanlationGroup
impl Debug for ScanlationGroup
Source§impl<'de> Deserialize<'de> for ScanlationGroup
impl<'de> Deserialize<'de> for ScanlationGroup
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
Source§impl Serialize for ScanlationGroup
impl Serialize for ScanlationGroup
impl Entity for ScanlationGroup
Auto Trait Implementations§
impl Freeze for ScanlationGroup
impl RefUnwindSafe for ScanlationGroup
impl Send for ScanlationGroup
impl Sync for ScanlationGroup
impl Unpin for ScanlationGroup
impl UnwindSafe for ScanlationGroup
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