pub struct AutoCmd {
pub id: Option<i64>,
pub group: Option<i64>,
pub group_name: Option<String>,
pub desc: Option<String>,
pub event: String,
pub command: Option<String>,
pub once: bool,
pub pattern: String,
pub buflocal: bool,
pub buffer: Option<i64>,
}Fields
id: Option<i64>group: Option<i64>group_name: Option<String>desc: Option<String>event: Stringcommand: Option<String>once: boolpattern: Stringbuflocal: boolbuffer: Option<i64>Trait Implementations
sourceimpl<'de> Deserialize<'de> for AutoCmd
impl<'de> Deserialize<'de> for AutoCmd
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for AutoCmd
impl Send for AutoCmd
impl Sync for AutoCmd
impl Unpin for AutoCmd
impl UnwindSafe for AutoCmd
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<'lua, T> FromLuaMulti<'lua> for T where
T: FromLua<'lua>,
impl<'lua, T> FromLuaMulti<'lua> for T where
T: FromLua<'lua>,
sourcefn from_lua_multi(values: MultiValue<'lua>, lua: &'lua Lua) -> Result<T, Error>
fn from_lua_multi(values: MultiValue<'lua>, lua: &'lua Lua) -> Result<T, Error>
Performs the conversion. Read more