pub struct FlagResponse {
pub is_active: Option<bool>,
pub is_checked: Option<bool>,
pub is_archived: Option<bool>,
pub is_deleted: Option<bool>,
}Expand description
This is a re-exportation from the myc core to allow users to import both from myc-http-tools instead of the myc-core.
Fields§
§is_active: Option<bool>§is_checked: Option<bool>§is_archived: Option<bool>§is_deleted: Option<bool>Trait Implementations§
Source§impl Debug for FlagResponse
impl Debug for FlagResponse
Source§impl PartialEq for FlagResponse
impl PartialEq for FlagResponse
impl StructuralPartialEq for FlagResponse
Auto Trait Implementations§
impl Freeze for FlagResponse
impl RefUnwindSafe for FlagResponse
impl Send for FlagResponse
impl Sync for FlagResponse
impl Unpin for FlagResponse
impl UnwindSafe for FlagResponse
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