pub struct ScriptEntryList {
pub entries: Vec<ScriptEntry>,
}Fields§
§entries: Vec<ScriptEntry>Implementations§
Source§impl ScriptEntryList
impl ScriptEntryList
pub fn new_from_file<F: Read + Seek>( file: &mut F, ) -> Result<ScriptEntryList, ScriptEntryListError>
pub fn write_to_file<F: Write + Seek>( &self, file: &mut F, ) -> Result<(), ScriptEntryListError>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ScriptEntryList
impl<'de> Deserialize<'de> for ScriptEntryList
Source§fn 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 Freeze for ScriptEntryList
impl RefUnwindSafe for ScriptEntryList
impl Send for ScriptEntryList
impl Sync for ScriptEntryList
impl Unpin for ScriptEntryList
impl UnwindSafe for ScriptEntryList
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