pub struct UpdateEnrollmentStatusResponse {
pub status: Option<String>,
pub status_reason: Option<String>,
}
Fields§
§status: Option<String>
The enrollment status of the account.
status_reason: Option<String>
The reason for the enrollment status of the account. For example, an account might show a status of Pending
because member accounts of an organization require more time to be enrolled in the service.
Trait Implementations§
Source§impl Clone for UpdateEnrollmentStatusResponse
impl Clone for UpdateEnrollmentStatusResponse
Source§fn clone(&self) -> UpdateEnrollmentStatusResponse
fn clone(&self) -> UpdateEnrollmentStatusResponse
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 Default for UpdateEnrollmentStatusResponse
impl Default for UpdateEnrollmentStatusResponse
Source§fn default() -> UpdateEnrollmentStatusResponse
fn default() -> UpdateEnrollmentStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateEnrollmentStatusResponse
impl<'de> Deserialize<'de> for UpdateEnrollmentStatusResponse
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
Source§impl PartialEq for UpdateEnrollmentStatusResponse
impl PartialEq for UpdateEnrollmentStatusResponse
Source§fn eq(&self, other: &UpdateEnrollmentStatusResponse) -> bool
fn eq(&self, other: &UpdateEnrollmentStatusResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateEnrollmentStatusResponse
Auto Trait Implementations§
impl Freeze for UpdateEnrollmentStatusResponse
impl RefUnwindSafe for UpdateEnrollmentStatusResponse
impl Send for UpdateEnrollmentStatusResponse
impl Sync for UpdateEnrollmentStatusResponse
impl Unpin for UpdateEnrollmentStatusResponse
impl UnwindSafe for UpdateEnrollmentStatusResponse
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