pub struct OrganizationExistsPayload {
pub success: Option<bool>,
pub exists: Option<bool>,
}Fields§
§success: Option<bool>Whether the operation was successful.
exists: Option<bool>Whether the organization exists.
Trait Implementations§
Source§impl Clone for OrganizationExistsPayload
impl Clone for OrganizationExistsPayload
Source§fn clone(&self) -> OrganizationExistsPayload
fn clone(&self) -> OrganizationExistsPayload
Returns a duplicate 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 OrganizationExistsPayload
impl Debug for OrganizationExistsPayload
Source§impl Default for OrganizationExistsPayload
impl Default for OrganizationExistsPayload
Source§fn default() -> OrganizationExistsPayload
fn default() -> OrganizationExistsPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationExistsPayloadwhere
OrganizationExistsPayload: Default,
impl<'de> Deserialize<'de> for OrganizationExistsPayloadwhere
OrganizationExistsPayload: Default,
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 OrganizationExistsPayload
impl RefUnwindSafe for OrganizationExistsPayload
impl Send for OrganizationExistsPayload
impl Sync for OrganizationExistsPayload
impl Unpin for OrganizationExistsPayload
impl UnwindSafe for OrganizationExistsPayload
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