pub struct PayeeResponseData {
pub payee: Payee,
}
Fields§
§payee: Payee
Implementations§
Source§impl PayeeResponseData
impl PayeeResponseData
pub fn new(payee: Payee) -> PayeeResponseData
Trait Implementations§
Source§impl Clone for PayeeResponseData
impl Clone for PayeeResponseData
Source§fn clone(&self) -> PayeeResponseData
fn clone(&self) -> PayeeResponseData
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 PayeeResponseData
impl Debug for PayeeResponseData
Source§impl<'de> Deserialize<'de> for PayeeResponseData
impl<'de> Deserialize<'de> for PayeeResponseData
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 PayeeResponseData
impl PartialEq for PayeeResponseData
Source§impl Serialize for PayeeResponseData
impl Serialize for PayeeResponseData
impl StructuralPartialEq for PayeeResponseData
Auto Trait Implementations§
impl Freeze for PayeeResponseData
impl RefUnwindSafe for PayeeResponseData
impl Send for PayeeResponseData
impl Sync for PayeeResponseData
impl Unpin for PayeeResponseData
impl UnwindSafe for PayeeResponseData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more