pub struct StdoutObject(/* private fields */);Implementations§
Trait Implementations§
Source§impl Debug for StdoutObject
impl Debug for StdoutObject
Source§impl UserObject for StdoutObject
impl UserObject for StdoutObject
fn typ(&self) -> &'static str
fn get(&self, key: &str) -> Option<Value>
fn call_mut( &mut self, key: &str, args: Vec<Value>, ) -> Result<Value, Box<dyn Error>>
fn set(&mut self, key: &str, value: Value) -> Result<(), UserObjectError>
fn call(&self, key: &str, args: Vec<Value>) -> Result<Value, Box<dyn Error>>
Auto Trait Implementations§
impl Freeze for StdoutObject
impl RefUnwindSafe for StdoutObject
impl Send for StdoutObject
impl Sync for StdoutObject
impl Unpin for StdoutObject
impl UnwindSafe for StdoutObject
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