#[repr(i32)]pub enum SetLayerBindingResponse {
Success = 0,
InvalidLocation = 1,
InvalidBehavior = 2,
InvalidParameters = 3,
}Variants§
Implementations§
Source§impl SetLayerBindingResponse
impl SetLayerBindingResponse
Sourcepub fn is_valid(value: i32) -> bool
pub fn is_valid(value: i32) -> bool
Returns true if value is a variant of SetLayerBindingResponse.
Sourcepub fn from_i32(value: i32) -> Option<SetLayerBindingResponse>
👎Deprecated: Use the TryFrom<i32> implementation instead
pub fn from_i32(value: i32) -> Option<SetLayerBindingResponse>
Converts an i32 to a SetLayerBindingResponse, or None if value is not a valid variant.
Source§impl SetLayerBindingResponse
impl SetLayerBindingResponse
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for SetLayerBindingResponse
impl Clone for SetLayerBindingResponse
Source§fn clone(&self) -> SetLayerBindingResponse
fn clone(&self) -> SetLayerBindingResponse
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 SetLayerBindingResponse
impl Debug for SetLayerBindingResponse
Source§impl Default for SetLayerBindingResponse
impl Default for SetLayerBindingResponse
Source§fn default() -> SetLayerBindingResponse
fn default() -> SetLayerBindingResponse
Returns the “default value” for a type. Read more
Source§impl From<SetLayerBindingResponse> for i32
impl From<SetLayerBindingResponse> for i32
Source§fn from(value: SetLayerBindingResponse) -> i32
fn from(value: SetLayerBindingResponse) -> i32
Converts to this type from the input type.
Source§impl Hash for SetLayerBindingResponse
impl Hash for SetLayerBindingResponse
Source§impl Ord for SetLayerBindingResponse
impl Ord for SetLayerBindingResponse
Source§fn cmp(&self, other: &SetLayerBindingResponse) -> Ordering
fn cmp(&self, other: &SetLayerBindingResponse) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SetLayerBindingResponse
impl PartialEq for SetLayerBindingResponse
Source§impl PartialOrd for SetLayerBindingResponse
impl PartialOrd for SetLayerBindingResponse
Source§impl TryFrom<i32> for SetLayerBindingResponse
impl TryFrom<i32> for SetLayerBindingResponse
Source§type Error = DecodeError
type Error = DecodeError
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<SetLayerBindingResponse, DecodeError>
fn try_from(value: i32) -> Result<SetLayerBindingResponse, DecodeError>
Performs the conversion.
impl Copy for SetLayerBindingResponse
impl Eq for SetLayerBindingResponse
impl StructuralPartialEq for SetLayerBindingResponse
Auto Trait Implementations§
impl Freeze for SetLayerBindingResponse
impl RefUnwindSafe for SetLayerBindingResponse
impl Send for SetLayerBindingResponse
impl Sync for SetLayerBindingResponse
impl Unpin for SetLayerBindingResponse
impl UnwindSafe for SetLayerBindingResponse
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