pub struct InnerUser {
pub name: String,
pub discord_name: String,
}Expand description
Represents the data to be stored within the [User] enum.
It contains the username and discord name of the user being
analyzed.
name field is the name of the user.
discord_name field is the discord name of the user.
Fields§
§name: String§discord_name: StringTrait Implementations§
source§impl PartialEq<InnerUser> for InnerUser
impl PartialEq<InnerUser> for InnerUser
impl StructuralPartialEq for InnerUser
Auto Trait Implementations§
impl RefUnwindSafe for InnerUser
impl Send for InnerUser
impl Sync for InnerUser
impl Unpin for InnerUser
impl UnwindSafe for InnerUser
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