Struct ScxLoader

Source
pub(crate) struct ScxLoader {
    pub(crate) current_scx: Option<SupportedSched>,
    pub(crate) current_mode: SchedMode,
    pub(crate) channel: UnboundedSender<ScxMessage>,
}

Fields§

§current_scx: Option<SupportedSched>§current_mode: SchedMode§channel: UnboundedSender<ScxMessage>

Implementations§

Source§

impl ScxLoader

Source

pub(crate) async fn current_scheduler(&self) -> String

Get currently running scheduler, in case non is running return “unknown”

Source

pub(crate) async fn scheduler_mode(&self) -> SchedMode

Get scheduler mode

Source

pub(crate) async fn supported_schedulers(&self) -> Vec<&str>

Get list of supported schedulers

Source

pub(crate) async fn start_scheduler( &mut self, scx_name: SupportedSched, sched_mode: SchedMode, ) -> Result<()>

Source

pub(crate) async fn start_scheduler_with_args( &mut self, scx_name: SupportedSched, scx_args: Vec<String>, ) -> Result<()>

Source

pub(crate) async fn switch_scheduler( &mut self, scx_name: SupportedSched, sched_mode: SchedMode, ) -> Result<()>

Source

pub(crate) async fn switch_scheduler_with_args( &mut self, scx_name: SupportedSched, scx_args: Vec<String>, ) -> Result<()>

Source

pub(crate) async fn stop_scheduler(&mut self) -> Result<()>

Source§

impl ScxLoader

Source

pub async fn current_scheduler_changed( &self, signal_emitter: &SignalEmitter<'_>, ) -> Result<()>

Source

pub async fn scheduler_mode_changed( &self, signal_emitter: &SignalEmitter<'_>, ) -> Result<()>

Source

pub async fn supported_schedulers_changed( &self, signal_emitter: &SignalEmitter<'_>, ) -> Result<()>

Trait Implementations§

Source§

impl Interface for ScxLoader

Source§

fn name() -> InterfaceName<'static>

Return the name of the interface. Ex: “org.foo.MyInterface”
Source§

fn spawn_tasks_for_methods(&self) -> bool

Whether each method call will be handled from a different spawned task. Read more
Source§

fn get<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'life6, 'life7, 'async_trait>( &'life0 self, property_name: &'life1 str, object_server: &'life2 ObjectServer, connection: &'life3 Connection, header: Option<&'life4 Header<'life5>>, signal_emitter: &'life6 SignalEmitter<'life7>, ) -> Pin<Box<dyn Future<Output = Option<Result<OwnedValue>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait, 'life5: 'async_trait, 'life6: 'async_trait, 'life7: 'async_trait,

Get a property value. Returns None if the property doesn’t exist. Read more
Source§

fn get_all<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'life6, 'async_trait>( &'life0 self, object_server: &'life1 ObjectServer, connection: &'life2 Connection, header: Option<&'life3 Header<'life4>>, signal_emitter: &'life5 SignalEmitter<'life6>, ) -> Pin<Box<dyn Future<Output = Result<HashMap<String, OwnedValue>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait, 'life5: 'async_trait, 'life6: 'async_trait,

Return all the properties.
Source§

fn set<'call>( &'call self, property_name: &'call str, value: &'call Value<'_>, object_server: &'call ObjectServer, connection: &'call Connection, header: Option<&'call Header<'_>>, signal_emitter: &'call SignalEmitter<'_>, ) -> DispatchResult<'call>

Set a property value. Read more
Source§

fn set_mut<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'life6, 'life7, 'life8, 'life9, 'async_trait>( &'life0 mut self, property_name: &'life1 str, value: &'life2 Value<'life3>, object_server: &'life4 ObjectServer, connection: &'life5 Connection, header: Option<&'life6 Header<'life7>>, signal_emitter: &'life8 SignalEmitter<'life9>, ) -> Pin<Box<dyn Future<Output = Option<Result<()>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait, 'life5: 'async_trait, 'life6: 'async_trait, 'life7: 'async_trait, 'life8: 'async_trait, 'life9: 'async_trait,

Set a property value. Read more
Source§

fn call<'call>( &'call self, object_server: &'call ObjectServer, connection: &'call Connection, message: &'call Message, name: MemberName<'call>, ) -> DispatchResult<'call>

Call a method. Read more
Source§

fn call_mut<'call>( &'call mut self, object_server: &'call ObjectServer, connection: &'call Connection, message: &'call Message, name: MemberName<'call>, ) -> DispatchResult<'call>

Call a &mut self method. Read more
Source§

fn introspect_to_writer(&self, writer: &mut dyn Write, level: usize)

Write introspection XML to the writer, with the given indentation level.

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. 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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more