pub struct BinderTxEvent {
pub timestamp_ms: i64,
pub source_pid: u32,
pub source_uid: u32,
pub target_service: String,
pub target_method: String,
pub is_oneway: bool,
pub payload_size: u32,
}Fields§
§timestamp_ms: i64§source_pid: u32§source_uid: u32§target_service: Stringe.g. “notification”, “activity”, “window”
target_method: Stringe.g. “enqueueNotificationWithTag”
is_oneway: bool§payload_size: u32Parcel 大小, 不存内容
Trait Implementations§
Source§impl Clone for BinderTxEvent
impl Clone for BinderTxEvent
Source§fn clone(&self) -> BinderTxEvent
fn clone(&self) -> BinderTxEvent
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 BinderTxEvent
impl Debug for BinderTxEvent
Source§impl<'de> Deserialize<'de> for BinderTxEvent
impl<'de> Deserialize<'de> for BinderTxEvent
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 BinderTxEvent
impl PartialEq for BinderTxEvent
Source§impl Serialize for BinderTxEvent
impl Serialize for BinderTxEvent
impl Eq for BinderTxEvent
impl StructuralPartialEq for BinderTxEvent
Auto Trait Implementations§
impl Freeze for BinderTxEvent
impl RefUnwindSafe for BinderTxEvent
impl Send for BinderTxEvent
impl Sync for BinderTxEvent
impl Unpin for BinderTxEvent
impl UnsafeUnpin for BinderTxEvent
impl UnwindSafe for BinderTxEvent
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