pub struct AddMemberResponse {
pub user_id: UserId,
}Expand description
Response to a successful member pre-provisioning.
JSON schema
{
"description": "Response to a successful member pre-provisioning.",
"type": "object",
"required": [
"user_id"
],
"properties": {
"user_id": {
"$ref": "#/components/schemas/UserId"
}
}
}Fields§
§user_id: UserIdImplementations§
Source§impl AddMemberResponse
impl AddMemberResponse
pub fn builder() -> AddMemberResponse
Trait Implementations§
Source§impl Clone for AddMemberResponse
impl Clone for AddMemberResponse
Source§fn clone(&self) -> AddMemberResponse
fn clone(&self) -> AddMemberResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddMemberResponse
impl Debug for AddMemberResponse
Source§impl<'de> Deserialize<'de> for AddMemberResponse
impl<'de> Deserialize<'de> for AddMemberResponse
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 From<&AddMemberResponse> for AddMemberResponse
impl From<&AddMemberResponse> for AddMemberResponse
Source§fn from(value: &AddMemberResponse) -> Self
fn from(value: &AddMemberResponse) -> Self
Converts to this type from the input type.
Source§impl From<AddMemberResponse> for AddMemberResponse
impl From<AddMemberResponse> for AddMemberResponse
Source§fn from(value: AddMemberResponse) -> Self
fn from(value: AddMemberResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for AddMemberResponse
impl Serialize for AddMemberResponse
Source§impl TryFrom<AddMemberResponse> for AddMemberResponse
impl TryFrom<AddMemberResponse> for AddMemberResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AddMemberResponse) -> Result<Self, ConversionError>
fn try_from(value: AddMemberResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AddMemberResponse
impl RefUnwindSafe for AddMemberResponse
impl Send for AddMemberResponse
impl Sync for AddMemberResponse
impl Unpin for AddMemberResponse
impl UnsafeUnpin for AddMemberResponse
impl UnwindSafe for AddMemberResponse
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