pub struct GetCoursesResponse {
pub courses: Vec<Course>,
pub total: Option<u64>,
}Fields§
§courses: Vec<Course>§total: Option<u64>Trait Implementations§
Source§impl Clone for GetCoursesResponse
impl Clone for GetCoursesResponse
Source§fn clone(&self) -> GetCoursesResponse
fn clone(&self) -> GetCoursesResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetCoursesResponse
impl Debug for GetCoursesResponse
Source§impl<'de> Deserialize<'de> for GetCoursesResponse
impl<'de> Deserialize<'de> for GetCoursesResponse
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 GetCoursesResponse
impl RefUnwindSafe for GetCoursesResponse
impl Send for GetCoursesResponse
impl Sync for GetCoursesResponse
impl Unpin for GetCoursesResponse
impl UnsafeUnpin for GetCoursesResponse
impl UnwindSafe for GetCoursesResponse
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