pub struct Patrol {
pub guid: Option<String>,
pub name: String,
pub member_count: Option<i32>,
pub patrol_leader_user_id: Option<i64>,
pub patrol_leader_name: Option<String>,
}Fields§
§guid: Option<String>§name: String§member_count: Option<i32>§patrol_leader_user_id: Option<i64>§patrol_leader_name: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Patrol
impl<'de> Deserialize<'de> for Patrol
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 Patrol
impl RefUnwindSafe for Patrol
impl Send for Patrol
impl Sync for Patrol
impl Unpin for Patrol
impl UnsafeUnpin for Patrol
impl UnwindSafe for Patrol
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