pub struct ReadOperation {
pub object_name: String,
pub flags: u32,
/* private fields */
}
Expand description
A helper to create rados read operation An object read operation stores a number of operations which can be executed atomically.
Fields§
§object_name: String
§flags: u32
flags are set by calling LIBRADOS_OPERATION_NOFLAG | LIBRADOS_OPERATION_BALANCE_READS all the other flags are documented in rados.rs
Trait Implementations§
Source§impl Debug for ReadOperation
impl Debug for ReadOperation
Auto Trait Implementations§
impl Freeze for ReadOperation
impl RefUnwindSafe for ReadOperation
impl !Send for ReadOperation
impl !Sync for ReadOperation
impl Unpin for ReadOperation
impl UnwindSafe for ReadOperation
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