pub struct SchoolListing {
pub login_methods: LoginMethods,
pub name: String,
pub url: String,
pub url_name: String,
}
Expand description
A schoolsoft school
Fields§
§login_methods: LoginMethods
§name: String
§url: String
§url_name: String
Implementations§
Source§impl SchoolListing
impl SchoolListing
pub fn deserialize_many(json: &str) -> Result<Vec<Self>, SchoolListingError>
Trait Implementations§
Source§impl Clone for SchoolListing
impl Clone for SchoolListing
Source§fn clone(&self) -> SchoolListing
fn clone(&self) -> SchoolListing
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 SchoolListing
impl Debug for SchoolListing
Source§impl Deserializer for SchoolListing
impl Deserializer for SchoolListing
Source§impl PartialEq for SchoolListing
impl PartialEq for SchoolListing
impl Eq for SchoolListing
impl StructuralPartialEq for SchoolListing
Auto Trait Implementations§
impl Freeze for SchoolListing
impl RefUnwindSafe for SchoolListing
impl Send for SchoolListing
impl Sync for SchoolListing
impl Unpin for SchoolListing
impl UnwindSafe for SchoolListing
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.