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