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