Skip to main content

SignalScope

Enum SignalScope 

Source
pub enum SignalScope {
    Global,
    Channel(ChannelId),
    WithChildren(ChannelId),
}
Expand description

The scope affected by a signal or permission check.

Defines the boundary of effect for control operations.

§Scope Hierarchy

Global
  └── WithChildren (channel + descendants)
        └── Channel (specific only)

§Permission Requirements

ScopeStandard PrivilegeElevated Privilege
GlobalDeniedAllowed
WithChildren (own)AllowedAllowed
WithChildren (other)DeniedAllowed
Channel (own)AllowedAllowed
Channel (other)DeniedAllowed

§Example

use orcs_types::{SignalScope, ChannelId};

let global = SignalScope::Global;
let channel = SignalScope::Channel(ChannelId::new());
let with_children = SignalScope::WithChildren(ChannelId::new());

assert!(global.is_global());
assert!(!channel.is_global());
assert!(with_children.includes_descendants());

Variants§

§

Global

Affects all channels and components.

Requires elevated privilege.

§

Channel(ChannelId)

Affects a specific channel only.

§

WithChildren(ChannelId)

Affects a channel and all its descendants.

Use this when you want to signal a subtree of channels. Descendant checking requires World access at runtime.

Implementations§

Source§

impl SignalScope

Source

pub fn is_global(&self) -> bool

Returns true if this is a Global scope.

§Example
use orcs_types::SignalScope;

assert!(SignalScope::Global.is_global());
Source

pub fn includes_descendants(&self) -> bool

Returns true if this scope includes descendants.

Both Global and WithChildren include descendants.

§Example
use orcs_types::{SignalScope, ChannelId};

assert!(SignalScope::Global.includes_descendants());
assert!(SignalScope::WithChildren(ChannelId::new()).includes_descendants());
assert!(!SignalScope::Channel(ChannelId::new()).includes_descendants());
Source

pub fn affects(&self, channel: ChannelId) -> bool

Returns true if this scope affects the given channel (without descendant check).

For WithChildren, this only checks the root channel. Use affects_with_descendants() for full descendant checking.

§Example
use orcs_types::{SignalScope, ChannelId};

let ch1 = ChannelId::new();
let ch2 = ChannelId::new();

assert!(SignalScope::Global.affects(ch1));
assert!(SignalScope::Channel(ch1).affects(ch1));
assert!(!SignalScope::Channel(ch1).affects(ch2));
Source

pub fn affects_with_descendants<F>( &self, channel: ChannelId, is_descendant: F, ) -> bool
where F: FnOnce(ChannelId) -> bool,

Checks if this scope affects the given channel, with descendant support.

The is_descendant closure is called for WithChildren scope to check if the channel is a descendant of the scope’s root.

§Arguments
  • channel - The channel to check
  • is_descendant - Closure that returns true if channel is a descendant of the scope root
§Example
use orcs_types::{SignalScope, ChannelId};

let root = ChannelId::new();
let child = ChannelId::new();
let other = ChannelId::new();

let scope = SignalScope::WithChildren(root);

// Simulate: child is descendant of root, other is not
assert!(scope.affects_with_descendants(root, |_| false)); // root itself
assert!(scope.affects_with_descendants(child, |ch| ch == child)); // child
assert!(!scope.affects_with_descendants(other, |_| false)); // unrelated
Source

pub fn channel(&self) -> Option<ChannelId>

Returns the target channel if this is a Channel or WithChildren scope.

Trait Implementations§

Source§

impl Clone for SignalScope

Source§

fn clone(&self) -> SignalScope

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SignalScope

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for SignalScope

Source§

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 Display for SignalScope

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for SignalScope

Source§

fn eq(&self, other: &SignalScope) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for SignalScope

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for SignalScope

Source§

impl StructuralPartialEq for SignalScope

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,