pub struct TornEducation {
pub id: i32,
pub name: String,
pub courses: Vec<TornEducationCourses>,
}
Fields§
§id: i32
§name: String
§courses: Vec<TornEducationCourses>
Trait Implementations§
Source§impl Clone for TornEducation
impl Clone for TornEducation
Source§fn clone(&self) -> TornEducation
fn clone(&self) -> TornEducation
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TornEducation
impl Debug for TornEducation
Source§impl<'de> Deserialize<'de> for TornEducation
impl<'de> Deserialize<'de> for TornEducation
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 PartialEq for TornEducation
impl PartialEq for TornEducation
impl StructuralPartialEq for TornEducation
Auto Trait Implementations§
impl Freeze for TornEducation
impl RefUnwindSafe for TornEducation
impl Send for TornEducation
impl Sync for TornEducation
impl Unpin for TornEducation
impl UnwindSafe for TornEducation
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