pub struct MineChannel {
pub name: String,
pub notes: Vec<MineNote>,
}
Expand description
地雷チャンネル(beatoraja拡張)
Fields§
§name: String
ファイル名
notes: Vec<MineNote>
ノーツ
Trait Implementations§
Source§impl Clone for MineChannel
impl Clone for MineChannel
Source§fn clone(&self) -> MineChannel
fn clone(&self) -> MineChannel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MineChannel
impl Debug for MineChannel
Source§impl<'de> Deserialize<'de> for MineChannel
impl<'de> Deserialize<'de> for MineChannel
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
Source§impl PartialEq for MineChannel
impl PartialEq for MineChannel
Source§impl Serialize for MineChannel
impl Serialize for MineChannel
impl StructuralPartialEq for MineChannel
Auto Trait Implementations§
impl Freeze for MineChannel
impl RefUnwindSafe for MineChannel
impl Send for MineChannel
impl Sync for MineChannel
impl Unpin for MineChannel
impl UnwindSafe for MineChannel
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