cargo fmt

This commit is contained in:
mykola2312 2023-08-31 13:51:41 +03:00
parent 4d78a5ca8b
commit d8f1ef6dbd

View file

@ -3,10 +3,10 @@ use super::raw::Raw;
use anyhow::Result; use anyhow::Result;
use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt}; use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
use encoding_rs::WINDOWS_1251; use encoding_rs::WINDOWS_1251;
use std::io::Cursor;
use std::borrow::Borrow; use std::borrow::Borrow;
use std::hash::{Hash, Hasher};
use std::fmt; use std::fmt;
use std::hash::{Hash, Hasher};
use std::io::Cursor;
// FString - Fallout // FString - Fallout
@ -105,4 +105,4 @@ impl fmt::Display for FString {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.str) write!(f, "{}", self.str)
} }
} }