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