pub struct ClassShape {
pub className: i32,
pub propertyNames: Vec<i32>,
pub methodNames: Vec<i32>,
}Fields§
§className: i32§propertyNames: Vec<i32>§methodNames: Vec<i32>Trait Implementations§
Source§impl Clone for ClassShape
impl Clone for ClassShape
Source§fn clone(&self) -> ClassShape
fn clone(&self) -> ClassShape
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClassShape
impl Debug for ClassShape
Source§impl Default for ClassShape
impl Default for ClassShape
Source§fn default() -> ClassShape
fn default() -> ClassShape
Returns the “default value” for a type. Read more
impl Eq for ClassShape
Source§impl Hash for ClassShape
impl Hash for ClassShape
Source§impl PartialEq for ClassShape
impl PartialEq for ClassShape
Source§fn eq(&self, other: &ClassShape) -> bool
fn eq(&self, other: &ClassShape) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClassShape
Auto Trait Implementations§
impl Freeze for ClassShape
impl RefUnwindSafe for ClassShape
impl Send for ClassShape
impl Sync for ClassShape
impl Unpin for ClassShape
impl UnsafeUnpin for ClassShape
impl UnwindSafe for ClassShape
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