pub struct PropertyContextCommon<'b> {
pub args: Cow<'b, str>,
pub terminal: &'b mut dyn CharacterTerminalWriter,
pub current_path: &'b str,
pub id: Cow<'b, str>,
pub style: PropertyCommandStyle,
pub strings: &'b dyn Strings,
}
Fields§
§args: Cow<'b, str>
§terminal: &'b mut dyn CharacterTerminalWriter
§current_path: &'b str
§id: Cow<'b, str>
§style: PropertyCommandStyle
§strings: &'b dyn Strings
Implementations§
Source§impl<'b> PropertyContextCommon<'b>
impl<'b> PropertyContextCommon<'b>
pub fn get_args(&self) -> &str
pub fn get_terminal(&mut self) -> &mut dyn CharacterTerminalWriter
pub fn get_current_path(&self) -> &str
pub fn get_property_id(&self) -> &str
Auto Trait Implementations§
impl<'b> Freeze for PropertyContextCommon<'b>
impl<'b> !RefUnwindSafe for PropertyContextCommon<'b>
impl<'b> !Send for PropertyContextCommon<'b>
impl<'b> !Sync for PropertyContextCommon<'b>
impl<'b> Unpin for PropertyContextCommon<'b>
impl<'b> !UnwindSafe for PropertyContextCommon<'b>
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