pub struct Character {
pub id: usize,
pub name: String,
pub link: String,
pub rarity: String,
pub rarity_image: String,
pub path: String,
pub path_image: String,
pub ctype: String,
pub ctype_image: String,
}Fields§
§id: usize§name: String§link: String§rarity: String§rarity_image: String§path: String§path_image: String§ctype: String§ctype_image: StringAuto Trait Implementations§
impl Freeze for Character
impl RefUnwindSafe for Character
impl Send for Character
impl Sync for Character
impl Unpin for Character
impl UnsafeUnpin for Character
impl UnwindSafe for Character
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