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