pub struct BspParseInput<'a> {
pub bsp: &'a [u8],
pub lit: Option<&'a [u8]>,
pub settings: BspParseSettings,
}Fields§
§bsp: &'a [u8]The data for the BSP file itself.
lit: Option<&'a [u8]>The optional .lit file for external colored lighting.
settings: BspParseSettingsAuto Trait Implementations§
impl<'a> Freeze for BspParseInput<'a>
impl<'a> RefUnwindSafe for BspParseInput<'a>
impl<'a> Send for BspParseInput<'a>
impl<'a> Sync for BspParseInput<'a>
impl<'a> Unpin for BspParseInput<'a>
impl<'a> UnwindSafe for BspParseInput<'a>
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