pub enum UserPropertyKind {
Int(c_int),
Bool(bool),
Float(c_float),
String(Utf8CString),
}
Available on crate feature
studio
only.Expand description
User property types.
Variants§
Trait Implementations§
Source§impl Clone for UserPropertyKind
impl Clone for UserPropertyKind
Source§fn clone(&self) -> UserPropertyKind
fn clone(&self) -> UserPropertyKind
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 UserPropertyKind
impl Debug for UserPropertyKind
Source§impl PartialEq for UserPropertyKind
impl PartialEq for UserPropertyKind
impl StructuralPartialEq for UserPropertyKind
Auto Trait Implementations§
impl Freeze for UserPropertyKind
impl RefUnwindSafe for UserPropertyKind
impl Send for UserPropertyKind
impl Sync for UserPropertyKind
impl Unpin for UserPropertyKind
impl UnwindSafe for UserPropertyKind
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