pub struct LendingPoolApiResponseAny {
pub success: bool,
pub message: String,
pub data: Option<Option<Value>>,
}Fields§
§success: bool§message: String§data: Option<Option<Value>>Implementations§
Source§impl LendingPoolApiResponseAny
impl LendingPoolApiResponseAny
pub fn new(success: bool, message: String) -> LendingPoolApiResponseAny
Trait Implementations§
Source§impl Clone for LendingPoolApiResponseAny
impl Clone for LendingPoolApiResponseAny
Source§fn clone(&self) -> LendingPoolApiResponseAny
fn clone(&self) -> LendingPoolApiResponseAny
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 LendingPoolApiResponseAny
impl Debug for LendingPoolApiResponseAny
Source§impl Default for LendingPoolApiResponseAny
impl Default for LendingPoolApiResponseAny
Source§fn default() -> LendingPoolApiResponseAny
fn default() -> LendingPoolApiResponseAny
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LendingPoolApiResponseAny
impl<'de> Deserialize<'de> for LendingPoolApiResponseAny
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 LendingPoolApiResponseAny
impl PartialEq for LendingPoolApiResponseAny
Source§fn eq(&self, other: &LendingPoolApiResponseAny) -> bool
fn eq(&self, other: &LendingPoolApiResponseAny) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LendingPoolApiResponseAny
Auto Trait Implementations§
impl Freeze for LendingPoolApiResponseAny
impl RefUnwindSafe for LendingPoolApiResponseAny
impl Send for LendingPoolApiResponseAny
impl Sync for LendingPoolApiResponseAny
impl Unpin for LendingPoolApiResponseAny
impl UnsafeUnpin for LendingPoolApiResponseAny
impl UnwindSafe for LendingPoolApiResponseAny
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