pub struct DebugSetBlockProfileRateResponse {
pub jobid: Option<i64>,
}Expand description
DebugSetBlockProfileRateResponse
JSON schema
{
"type": "object",
"properties": {
"jobid": {
"description": "Job ID returned when _async=true.",
"type": "integer"
}
},
"additionalProperties": true
}Fields§
§jobid: Option<i64>Job ID returned when _async=true.
Trait Implementations§
Source§impl Clone for DebugSetBlockProfileRateResponse
impl Clone for DebugSetBlockProfileRateResponse
Source§fn clone(&self) -> DebugSetBlockProfileRateResponse
fn clone(&self) -> DebugSetBlockProfileRateResponse
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<'de> Deserialize<'de> for DebugSetBlockProfileRateResponse
impl<'de> Deserialize<'de> for DebugSetBlockProfileRateResponse
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<&DebugSetBlockProfileRateResponse> for DebugSetBlockProfileRateResponse
impl From<&DebugSetBlockProfileRateResponse> for DebugSetBlockProfileRateResponse
Source§fn from(value: &DebugSetBlockProfileRateResponse) -> Self
fn from(value: &DebugSetBlockProfileRateResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DebugSetBlockProfileRateResponse
impl RefUnwindSafe for DebugSetBlockProfileRateResponse
impl Send for DebugSetBlockProfileRateResponse
impl Sync for DebugSetBlockProfileRateResponse
impl Unpin for DebugSetBlockProfileRateResponse
impl UnsafeUnpin for DebugSetBlockProfileRateResponse
impl UnwindSafe for DebugSetBlockProfileRateResponse
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