[][src]Struct rcore::Core

pub struct Core {
    pub mode: AddrMode,
    pub io: RIO,
    pub stdout: Writer,
    pub stderr: Writer,
    pub env: Arc<RwLock<Environment<Core>>>,
    // some fields omitted
}

Fields

mode: AddrModeio: RIOstdout: Writerstderr: Writerenv: Arc<RwLock<Environment<Core>>>

Implementations

impl Core[src]

pub fn commands(&mut self) -> Arc<Mutex<Commands>>[src]

Returns list of all available commands in Core.

pub fn set_commands(&mut self, commands: Arc<Mutex<Commands>>)[src]

pub fn new() -> Self[src]

pub fn new_no_colors() -> Self[src]

pub fn set_loc(&mut self, loc: u64)[src]

pub fn get_loc(&self) -> u64[src]

pub fn add_command(
    &mut self,
    long: &'static str,
    short: &'static str,
    funcs: MRc<dyn Cmd + Sync + Send>
)
[src]

pub fn run(&mut self, command: &str, args: &[String])[src]

pub fn run_at(&mut self, command: &str, args: &[String], at: u64)[src]

pub fn help(&mut self, command: &str)[src]

Trait Implementations

impl Default for Core[src]

impl<'de> Deserialize<'de> for Core[src]

impl Serialize for Core[src]

Auto Trait Implementations

impl !RefUnwindSafe for Core

impl Send for Core

impl Sync for Core

impl Unpin for Core

impl !UnwindSafe for Core

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.