pub struct AssignmentGroup {
pub id: usize,
pub name: Option<String>,
pub position: Option<usize>,
pub group_weight: Option<usize>,
pub sis_source_id: Option<String>,
pub assignments: Option<Vec<usize>>,
}
Fields§
§id: usize
§name: Option<String>
§position: Option<usize>
§group_weight: Option<usize>
§sis_source_id: Option<String>
§assignments: Option<Vec<usize>>
Trait Implementations§
Source§impl Debug for AssignmentGroup
impl Debug for AssignmentGroup
Source§impl<'de> Deserialize<'de> for AssignmentGroup
impl<'de> Deserialize<'de> for AssignmentGroup
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 AssignmentGroup
impl RefUnwindSafe for AssignmentGroup
impl Send for AssignmentGroup
impl Sync for AssignmentGroup
impl Unpin for AssignmentGroup
impl UnwindSafe for AssignmentGroup
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