pub struct SimpleEarnFlexibleSetAutoSubscribeResponse {
pub success: bool,
}
Expand description
SimpleEarnFlexibleSetAutoSubscribeResponse
JSON schema
{
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"examples": [
true
],
"type": "boolean"
}
}
}
Fields§
§success: bool
Trait Implementations§
Source§impl Clone for SimpleEarnFlexibleSetAutoSubscribeResponse
impl Clone for SimpleEarnFlexibleSetAutoSubscribeResponse
Source§fn clone(&self) -> SimpleEarnFlexibleSetAutoSubscribeResponse
fn clone(&self) -> SimpleEarnFlexibleSetAutoSubscribeResponse
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<'de> Deserialize<'de> for SimpleEarnFlexibleSetAutoSubscribeResponse
impl<'de> Deserialize<'de> for SimpleEarnFlexibleSetAutoSubscribeResponse
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<&SimpleEarnFlexibleSetAutoSubscribeResponse> for SimpleEarnFlexibleSetAutoSubscribeResponse
impl From<&SimpleEarnFlexibleSetAutoSubscribeResponse> for SimpleEarnFlexibleSetAutoSubscribeResponse
Source§fn from(value: &SimpleEarnFlexibleSetAutoSubscribeResponse) -> Self
fn from(value: &SimpleEarnFlexibleSetAutoSubscribeResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SimpleEarnFlexibleSetAutoSubscribeResponse
impl RefUnwindSafe for SimpleEarnFlexibleSetAutoSubscribeResponse
impl Send for SimpleEarnFlexibleSetAutoSubscribeResponse
impl Sync for SimpleEarnFlexibleSetAutoSubscribeResponse
impl Unpin for SimpleEarnFlexibleSetAutoSubscribeResponse
impl UnwindSafe for SimpleEarnFlexibleSetAutoSubscribeResponse
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