pub struct InspectMemoryQuery {
pub about: String,
pub ref_id: String,
pub include_details: bool,
pub include_incoming: bool,
pub include_outgoing: bool,
pub include_raw: bool,
pub expect_revision: Option<u64>,
}Fields§
§about: String§ref_id: String§include_details: bool§include_incoming: bool§include_outgoing: bool§include_raw: bool§expect_revision: Option<u64>The body revision the caller declares it wants. None inspects
whatever is current. Some turns this read into an exact expansion:
the store holds one body version per node, so it either is that
revision or the read is a conflict naming the one that is there.
Trait Implementations§
Source§impl Clone for InspectMemoryQuery
impl Clone for InspectMemoryQuery
Source§fn clone(&self) -> InspectMemoryQuery
fn clone(&self) -> InspectMemoryQuery
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 Debug for InspectMemoryQuery
impl Debug for InspectMemoryQuery
impl Eq for InspectMemoryQuery
Source§impl PartialEq for InspectMemoryQuery
impl PartialEq for InspectMemoryQuery
impl StructuralPartialEq for InspectMemoryQuery
Auto Trait Implementations§
impl Freeze for InspectMemoryQuery
impl RefUnwindSafe for InspectMemoryQuery
impl Send for InspectMemoryQuery
impl Sync for InspectMemoryQuery
impl Unpin for InspectMemoryQuery
impl UnsafeUnpin for InspectMemoryQuery
impl UnwindSafe for InspectMemoryQuery
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