pub enum JavaMapOperation {
Get,
Put,
PutIfAbsent,
Remove,
ContainsKey,
GetAll,
PutAll,
Invalidate,
ClearNamespace,
EvictRegion,
}Expand description
Java map facade operation exposed by the migration toolkit.
Variants§
Get
HydraCacheMap.get.
Put
HydraCacheMap.put.
PutIfAbsent
HydraCacheMap.putIfAbsent.
Remove
HydraCacheMap.remove.
ContainsKey
HydraCacheMap.containsKey.
GetAll
HydraCacheMap.getAll.
PutAll
HydraCacheMap.putAll.
Invalidate
Key invalidation.
ClearNamespace
Namespace clear for the map.
EvictRegion
Region/namespace eviction.
Implementations§
Source§impl JavaMapOperation
impl JavaMapOperation
Sourcepub const fn protocol_family(self) -> JavaMapProtocolFamily
pub const fn protocol_family(self) -> JavaMapProtocolFamily
Return the protocol family that backs this facade operation.
Trait Implementations§
Source§impl Clone for JavaMapOperation
impl Clone for JavaMapOperation
Source§fn clone(&self) -> JavaMapOperation
fn clone(&self) -> JavaMapOperation
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 moreimpl Copy for JavaMapOperation
Source§impl Debug for JavaMapOperation
impl Debug for JavaMapOperation
impl Eq for JavaMapOperation
Source§impl PartialEq for JavaMapOperation
impl PartialEq for JavaMapOperation
Source§fn eq(&self, other: &JavaMapOperation) -> bool
fn eq(&self, other: &JavaMapOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JavaMapOperation
Auto Trait Implementations§
impl Freeze for JavaMapOperation
impl RefUnwindSafe for JavaMapOperation
impl Send for JavaMapOperation
impl Sync for JavaMapOperation
impl Unpin for JavaMapOperation
impl UnsafeUnpin for JavaMapOperation
impl UnwindSafe for JavaMapOperation
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