pub struct RenderMemoryResponse {
pub memory_boundary: MemoryBoundary,
pub record: Option<RenderedMemoryRecord>,
}Expand description
JSON shape of mimir_render_memory’s response.
Fields§
§memory_boundary: MemoryBoundaryConsumer rule for the optional record payload.
record: Option<RenderedMemoryRecord>The matching record, or null when the query has no match.
Trait Implementations§
Source§impl Clone for RenderMemoryResponse
impl Clone for RenderMemoryResponse
Source§fn clone(&self) -> RenderMemoryResponse
fn clone(&self) -> RenderMemoryResponse
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 RenderMemoryResponse
impl Debug for RenderMemoryResponse
Source§impl<'de> Deserialize<'de> for RenderMemoryResponse
impl<'de> Deserialize<'de> for RenderMemoryResponse
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 PartialEq for RenderMemoryResponse
impl PartialEq for RenderMemoryResponse
Source§impl Serialize for RenderMemoryResponse
impl Serialize for RenderMemoryResponse
impl Eq for RenderMemoryResponse
impl StructuralPartialEq for RenderMemoryResponse
Auto Trait Implementations§
impl Freeze for RenderMemoryResponse
impl RefUnwindSafe for RenderMemoryResponse
impl Send for RenderMemoryResponse
impl Sync for RenderMemoryResponse
impl Unpin for RenderMemoryResponse
impl UnsafeUnpin for RenderMemoryResponse
impl UnwindSafe for RenderMemoryResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.