Struct ibverbs::ffi::ibv_access_flags [] [src]

#[repr(C)]
pub struct ibv_access_flags(pub i32);

Methods

impl ibv_access_flags
[src]

IBV_ACCESS_LOCAL_WRITE: ibv_access_flags = ibv_access_flags(1)

impl ibv_access_flags
[src]

IBV_ACCESS_REMOTE_WRITE: ibv_access_flags = ibv_access_flags(2)

impl ibv_access_flags
[src]

IBV_ACCESS_REMOTE_READ: ibv_access_flags = ibv_access_flags(4)

impl ibv_access_flags
[src]

IBV_ACCESS_REMOTE_ATOMIC: ibv_access_flags = ibv_access_flags(8)

impl ibv_access_flags
[src]

IBV_ACCESS_MW_BIND: ibv_access_flags = ibv_access_flags(16)

impl ibv_access_flags
[src]

IBV_ACCESS_ZERO_BASED: ibv_access_flags = ibv_access_flags(32)

impl ibv_access_flags
[src]

IBV_ACCESS_ON_DEMAND: ibv_access_flags = ibv_access_flags(64)

Trait Implementations

impl BitOr<ibv_access_flags> for ibv_access_flags
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl BitOrAssign for ibv_access_flags
[src]

[src]

Performs the |= operation.

impl BitAnd<ibv_access_flags> for ibv_access_flags
[src]

The resulting type after applying the & operator.

[src]

Performs the & operation.

impl BitAndAssign for ibv_access_flags
[src]

[src]

Performs the &= operation.

impl Debug for ibv_access_flags
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for ibv_access_flags
[src]

impl Clone for ibv_access_flags
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ibv_access_flags
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for ibv_access_flags
[src]

impl Hash for ibv_access_flags
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations