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