Struct sn0int::shell::Shell

source ·
pub struct Shell<'a> { /* private fields */ }

Implementations§

source§

impl<'a> Shell<'a>

source

pub fn new( config: &'a Config, db: Database, blobs: BlobStorage, psl: PslReader, library: Library<'a>, keyring: KeyRing ) -> Result<Shell<'a>>

source

pub fn take_module(&mut self) -> Option<Module>

source

pub fn set_module(&mut self, module: Module)

source

pub fn module(&self) -> Option<&Module>

source

pub fn workspace(&self) -> &str

source

pub fn options_mut(&mut self) -> Option<&mut HashMap<String, String>>

source

pub fn set_target(&mut self, target: Option<Filter>)

source

pub fn target(&self) -> &Option<Filter>

source

pub fn scoped_targets(&self) -> Filter

source

pub fn db(&self) -> &Database

source

pub fn db_mut(&mut self) -> &mut Database

source

pub fn set_db(&mut self, db: Database)

source

pub fn blobs(&self) -> &BlobStorage

source

pub fn set_blobstorage(&mut self, blobs: BlobStorage)

source

pub fn psl(&mut self) -> Result<&Arc<Psl>>

source

pub fn config(&self) -> &Config

source

pub fn library(&self) -> &Library<'_>

source

pub fn library_mut(&mut self) -> &mut Library<'a>

source

pub fn keyring(&self) -> &KeyRing

source

pub fn keyring_mut(&mut self) -> &mut KeyRing

source

pub fn readline(&mut self) -> Option<(Command, Vec<String>)>

source

pub fn reload_modules(&mut self) -> Result<()>

source

pub fn reload_module_cache(&mut self)

source

pub fn reload_keyring_cache(&mut self)

source

pub fn load_history(&mut self) -> Result<()>

source

pub fn save_history(&mut self) -> Result<()>

source

pub fn set_signal_handler(&self) -> Result<()>

source

pub fn signal_register(&self) -> &Arc<SignalRegister>

source

pub fn store_blob(&self, tx: VoidSender, blob: &Blob)

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for Shell<'a>

§

impl<'a> Send for Shell<'a>

§

impl<'a> !Sync for Shell<'a>

§

impl<'a> Unpin for Shell<'a>

§

impl<'a> !UnwindSafe for Shell<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T> AsTaggedExplicit<'a> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self>

§

impl<'a, T> AsTaggedImplicit<'a> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self>

source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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.

source§

impl<T, U> Into<U> for Twhere 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> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expressionwhere Self: AsExpression<T> + Sized,

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere &'a Self: AsExpression<T>,

Convert &self to an expression for Diesel’s query builder. 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> Same<T> for T

§

type Output = T

Should always be Self
source§

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

§

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 Twhere U: TryFrom<T>,

§

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<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<G1, G2> Within<G2> for G1where G2: Contains<G1>,

§

fn is_within(&self, b: &G2) -> bool