pub struct Ops {
pub op: String,
}
Fields§
§op: String
Implementations§
Source§impl Ops
impl Ops
pub fn new() -> Ops
pub fn show_all(&mut self)
pub fn show_pool(&mut self, pool: String)
pub fn show_pool_key(&mut self, pool: String, key: String)
pub fn add_pool(&mut self, pool: String)
pub fn add_key(&mut self, pool: String, key: String, ty: Type, value: String)
pub fn del_pool(&mut self, pool: String)
pub fn del_key(&mut self, pool: String, key: String)
pub fn del_pool_all(&mut self, pool: String)
pub fn clear(&mut self)
pub fn go_byte(&self) -> Vec<u8> ⓘ
Auto Trait Implementations§
impl Freeze for Ops
impl RefUnwindSafe for Ops
impl Send for Ops
impl Sync for Ops
impl Unpin for Ops
impl UnwindSafe for Ops
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