pub struct Calendar {
pub date: String,
pub week: String,
pub war: String,
pub battle: String,
pub orecar: String,
pub school: String,
pub rescue: String,
pub luck: Option<Vec<String>>,
pub card: Vec<String>,
pub draw: Option<String>,
pub team: Option<Vec<String>>,
}Fields§
§date: String§week: String§war: String§battle: String§orecar: String§school: String§rescue: String§luck: Option<Vec<String>>§card: Vec<String>§draw: Option<String>§team: Option<Vec<String>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Calendar
impl<'de> Deserialize<'de> for Calendar
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 Calendar
impl RefUnwindSafe for Calendar
impl Send for Calendar
impl Sync for Calendar
impl Unpin for Calendar
impl UnsafeUnpin for Calendar
impl UnwindSafe for Calendar
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