pub struct SearchSchoolsResponse {
pub schools: Vec<AdminSchool>,
pub pages: ItemCount,
pub total_schools_count: ItemCount,
}
Expand description
List of school names and their associated schools
Fields§
§schools: Vec<AdminSchool>
List of schools
pages: ItemCount
Count of pages
total_schools_count: ItemCount
Total count of schools for this query
Trait Implementations§
Source§impl Clone for SearchSchoolsResponse
impl Clone for SearchSchoolsResponse
Source§fn clone(&self) -> SearchSchoolsResponse
fn clone(&self) -> SearchSchoolsResponse
Returns a copy of the value. Read more
1.0.0 · 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 SearchSchoolsResponse
impl Debug for SearchSchoolsResponse
Source§impl<'de> Deserialize<'de> for SearchSchoolsResponse
impl<'de> Deserialize<'de> for SearchSchoolsResponse
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 SearchSchoolsResponse
impl RefUnwindSafe for SearchSchoolsResponse
impl Send for SearchSchoolsResponse
impl Sync for SearchSchoolsResponse
impl Unpin for SearchSchoolsResponse
impl UnwindSafe for SearchSchoolsResponse
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