pub struct LookupEndUserResponse {
pub end_users: Vec<EndUser>,
}Expand description
LookupEndUserResponse
JSON schema
{
"type": "object",
"required": [
"endUsers"
],
"properties": {
"endUsers": {
"description": "The list of end users matching the lookup.",
"type": "array",
"items": {
"$ref": "#/components/schemas/EndUser"
}
}
}
}Fields§
§end_users: Vec<EndUser>The list of end users matching the lookup.
Implementations§
Source§impl LookupEndUserResponse
impl LookupEndUserResponse
pub fn builder() -> LookupEndUserResponse
Trait Implementations§
Source§impl Clone for LookupEndUserResponse
impl Clone for LookupEndUserResponse
Source§fn clone(&self) -> LookupEndUserResponse
fn clone(&self) -> LookupEndUserResponse
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 LookupEndUserResponse
impl Debug for LookupEndUserResponse
Source§impl<'de> Deserialize<'de> for LookupEndUserResponse
impl<'de> Deserialize<'de> for LookupEndUserResponse
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<&LookupEndUserResponse> for LookupEndUserResponse
impl From<&LookupEndUserResponse> for LookupEndUserResponse
Source§fn from(value: &LookupEndUserResponse) -> Self
fn from(value: &LookupEndUserResponse) -> Self
Converts to this type from the input type.
Source§impl From<LookupEndUserResponse> for LookupEndUserResponse
impl From<LookupEndUserResponse> for LookupEndUserResponse
Source§fn from(value: LookupEndUserResponse) -> Self
fn from(value: LookupEndUserResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for LookupEndUserResponse
impl Serialize for LookupEndUserResponse
Source§impl TryFrom<LookupEndUserResponse> for LookupEndUserResponse
impl TryFrom<LookupEndUserResponse> for LookupEndUserResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: LookupEndUserResponse) -> Result<Self, ConversionError>
fn try_from(value: LookupEndUserResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for LookupEndUserResponse
impl RefUnwindSafe for LookupEndUserResponse
impl Send for LookupEndUserResponse
impl Sync for LookupEndUserResponse
impl Unpin for LookupEndUserResponse
impl UnsafeUnpin for LookupEndUserResponse
impl UnwindSafe for LookupEndUserResponse
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