Struct ark_api::behavior::BehaviorAddr
source · pub struct BehaviorAddr {
pub actor_id: ActorId,
pub instance: ForeignBehaviorInstanceId,
}Expand description
Address of a single behavior.
Fields§
§actor_id: ActorIdThe actor at which this message is targeted.
instance: ForeignBehaviorInstanceIdThe behavior instance at which this message is targeted.
Trait Implementations§
source§impl Clone for BehaviorAddr
impl Clone for BehaviorAddr
source§fn clone(&self) -> BehaviorAddr
fn clone(&self) -> BehaviorAddr
Returns a copy 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 BehaviorAddr
impl Debug for BehaviorAddr
source§impl PartialEq<BehaviorAddr> for BehaviorAddr
impl PartialEq<BehaviorAddr> for BehaviorAddr
source§fn eq(&self, other: &BehaviorAddr) -> bool
fn eq(&self, other: &BehaviorAddr) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for BehaviorAddr
impl Eq for BehaviorAddr
impl StructuralEq for BehaviorAddr
impl StructuralPartialEq for BehaviorAddr
Auto Trait Implementations§
impl RefUnwindSafe for BehaviorAddr
impl Send for BehaviorAddr
impl Sync for BehaviorAddr
impl Unpin for BehaviorAddr
impl UnwindSafe for BehaviorAddr
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