pub struct ConnectorBehaviourTransitions {
pub reactive_instance: ReactiveRelation,
pub outbound_property_observers: EntityPropertyObserverContainerImpl,
pub property_observers: RelationPropertyObserverContainerImpl,
pub inbound_property_observers: EntityPropertyObserverContainerImpl,
pub ty: BehaviourTypeId,
pub f: ConnectorFunction,
}
Fields§
§reactive_instance: ReactiveRelation
§outbound_property_observers: EntityPropertyObserverContainerImpl
§property_observers: RelationPropertyObserverContainerImpl
§inbound_property_observers: EntityPropertyObserverContainerImpl
§ty: BehaviourTypeId
§f: ConnectorFunction
Implementations§
Source§impl ConnectorBehaviourTransitions
impl ConnectorBehaviourTransitions
pub fn new( reactive_instance: ReactiveRelation, ty: BehaviourTypeId, f: ConnectorFunction, ) -> Self
Trait Implementations§
Source§impl BehaviourConnect<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
impl BehaviourConnect<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
Source§impl BehaviourDisconnect<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
impl BehaviourDisconnect<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
Source§fn disconnect(&self) -> Result<(), BehaviourDisconnectFailed>
fn disconnect(&self) -> Result<(), BehaviourDisconnectFailed>
Disconnects the reactive streams.
Source§impl BehaviourInit<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
impl BehaviourInit<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
Source§impl BehaviourShutdown<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
impl BehaviourShutdown<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
Source§impl BehaviourTransitions<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
impl BehaviourTransitions<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
Source§impl Drop for ConnectorBehaviourTransitions
impl Drop for ConnectorBehaviourTransitions
Source§impl ReactiveInstanceContainer<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
impl ReactiveInstanceContainer<RelationInstanceId, ReactiveRelation> for ConnectorBehaviourTransitions
Auto Trait Implementations§
impl Freeze for ConnectorBehaviourTransitions
impl !RefUnwindSafe for ConnectorBehaviourTransitions
impl Send for ConnectorBehaviourTransitions
impl Sync for ConnectorBehaviourTransitions
impl Unpin for ConnectorBehaviourTransitions
impl !UnwindSafe for ConnectorBehaviourTransitions
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more