Enum protos::transform::TransformType
source · pub enum TransformType {
TRANSFORM_TYPE_UNKNOWN,
TRANSFORM_TYPE_REPLACE_VALUE,
TRANSFORM_TYPE_DELETE_FIELD,
TRANSFORM_TYPE_OBFUSCATE_VALUE,
TRANSFORM_TYPE_MASK_VALUE,
}Variants§
TRANSFORM_TYPE_UNKNOWN
TRANSFORM_TYPE_REPLACE_VALUE
TRANSFORM_TYPE_DELETE_FIELD
TRANSFORM_TYPE_OBFUSCATE_VALUE
TRANSFORM_TYPE_MASK_VALUE
Trait Implementations§
source§impl Clone for TransformType
impl Clone for TransformType
source§fn clone(&self) -> TransformType
fn clone(&self) -> TransformType
Returns a copy 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 TransformType
impl Debug for TransformType
source§impl Default for TransformType
impl Default for TransformType
source§impl Enum for TransformType
impl Enum for TransformType
source§fn from_i32(value: i32) -> Option<TransformType>
fn from_i32(value: i32) -> Option<TransformType>
Try to create an enum from
i32 value.
Return None if value is unknown.source§const VALUES: &'static [TransformType] = _
const VALUES: &'static [TransformType] = _
All enum values for enum type.
source§impl EnumFull for TransformType
impl EnumFull for TransformType
source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
source§impl Hash for TransformType
impl Hash for TransformType
source§impl PartialEq<TransformType> for TransformType
impl PartialEq<TransformType> for TransformType
source§fn eq(&self, other: &TransformType) -> bool
fn eq(&self, other: &TransformType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for TransformType
impl Eq for TransformType
impl StructuralEq for TransformType
impl StructuralPartialEq for TransformType
Auto Trait Implementations§
impl RefUnwindSafe for TransformType
impl Send for TransformType
impl Sync for TransformType
impl Unpin for TransformType
impl UnwindSafe for TransformType
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