pub struct CallSequence {
pub method: String,
pub calls: Vec<String>,
}Expand description
One call-sequence record parsed from a class’s callSequences blob.
Fields§
§method: String§calls: Vec<String>Trait Implementations§
Source§impl Clone for CallSequence
impl Clone for CallSequence
Source§fn clone(&self) -> CallSequence
fn clone(&self) -> CallSequence
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 CallSequence
impl Debug for CallSequence
Source§impl<'de> Deserialize<'de> for CallSequence
impl<'de> Deserialize<'de> for CallSequence
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
Auto Trait Implementations§
impl Freeze for CallSequence
impl RefUnwindSafe for CallSequence
impl Send for CallSequence
impl Sync for CallSequence
impl Unpin for CallSequence
impl UnsafeUnpin for CallSequence
impl UnwindSafe for CallSequence
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