pub enum FrcType {
Show 14 variants
Void,
Boolean,
Int,
Double,
Float,
String,
BoolArray,
IntArray,
FloatArray,
DoubleArray,
StringArray,
Raw,
Struct,
Protobuf,
}
Variants§
Void
Boolean
Int
Double
Float
String
BoolArray
IntArray
FloatArray
DoubleArray
StringArray
Raw
Struct
Protobuf
Trait Implementations§
Source§impl<'a> Deserialize<'a> for FrcType
impl<'a> Deserialize<'a> for FrcType
Source§fn deserialize<D>(
deserializer: D,
) -> Result<Self, <D as Deserializer<'a>>::Error>where
D: Deserializer<'a>,
fn deserialize<D>(
deserializer: D,
) -> Result<Self, <D as Deserializer<'a>>::Error>where
D: Deserializer<'a>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for FrcType
impl Serialize for FrcType
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for FrcType
impl Eq for FrcType
impl StructuralPartialEq for FrcType
Auto Trait Implementations§
impl Freeze for FrcType
impl RefUnwindSafe for FrcType
impl Send for FrcType
impl Sync for FrcType
impl Unpin for FrcType
impl UnwindSafe for FrcType
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