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