pub struct Team {
pub team_id: String,
pub team_name: String,
pub sets_won: u8,
pub head_coach: String,
pub assistant_coaches: String,
}Fields§
§team_id: String§team_name: String§sets_won: u8§head_coach: String§assistant_coaches: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Team
impl RefUnwindSafe for Team
impl Send for Team
impl Sync for Team
impl Unpin for Team
impl UnwindSafe for Team
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