pub struct Parcelable {
pub name: String,
pub elements: Vec<ParcelableElement>,
pub annotations: Vec<Annotation>,
pub doc: Option<String>,
pub full_range: Range,
pub symbol_range: Range,
}
Fields§
§name: String
§elements: Vec<ParcelableElement>
§annotations: Vec<Annotation>
§doc: Option<String>
§full_range: Range
§symbol_range: Range
Trait Implementations§
Source§impl Clone for Parcelable
impl Clone for Parcelable
Source§fn clone(&self) -> Parcelable
fn clone(&self) -> Parcelable
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Parcelable
impl Debug for Parcelable
Source§impl<'de> Deserialize<'de> for Parcelable
impl<'de> Deserialize<'de> for Parcelable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Parcelable
impl PartialEq for Parcelable
Source§impl Serialize for Parcelable
impl Serialize for Parcelable
impl StructuralPartialEq for Parcelable
Auto Trait Implementations§
impl Freeze for Parcelable
impl RefUnwindSafe for Parcelable
impl Send for Parcelable
impl Sync for Parcelable
impl Unpin for Parcelable
impl UnwindSafe for Parcelable
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