pub struct ScriptCall {
pub reference: ScriptReference,
pub arguments: Vec<ScriptExpression>,
}Expand description
A call.
Random example:
PermittedAINarrators.Add("AF3_1_5");Fields§
§reference: ScriptReference§arguments: Vec<ScriptExpression>Implementations§
Source§impl ScriptCall
impl ScriptCall
pub fn decode_call(input: &[u8]) -> IResult<&[u8], ScriptCall, Error>
Trait Implementations§
Source§impl Debug for ScriptCall
impl Debug for ScriptCall
Source§impl PartialEq for ScriptCall
impl PartialEq for ScriptCall
impl StructuralPartialEq for ScriptCall
Auto Trait Implementations§
impl Freeze for ScriptCall
impl RefUnwindSafe for ScriptCall
impl Send for ScriptCall
impl Sync for ScriptCall
impl Unpin for ScriptCall
impl UnwindSafe for ScriptCall
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