Struct UnsafeListNode

Source
pub struct UnsafeListNode<T> { /* private fields */ }
Expand description

链表节点

Implementations§

Source§

impl<T> UnsafeListNode<T>

Source

pub const fn new() -> Self

构造一个链表节点

Source

pub unsafe fn list_del(&mut self)

§Safety

确保数据不会被 rust 所有权机制释放, 如果存在并发, 请保证一切操作的原子性.

Source

pub unsafe fn list_replace(&mut self, new: &mut UnsafeListNode<T>)

§Safety

确保数据不会被 rust 所有权机制释放, 如果存在并发, 请保证一切操作的原子性.

Source

pub unsafe fn list_replace_init(&mut self, new: &mut UnsafeListNode<T>)

§Safety

确保数据不会被 rust 所有权机制释放, 如果存在并发, 请保证一切操作的原子性.

Source

pub unsafe fn list_del_init(&mut self)

§Safety

确保数据不会被 rust 所有权机制释放, 如果存在并发, 请保证一切操作的原子性.

Source

pub unsafe fn list_move(&mut self, head: &mut UnsafeListHead<T>)

§Safety

确保数据不会被 rust 所有权机制释放, 如果存在并发, 请保证一切操作的原子性.

Source

pub unsafe fn list_move_tail(&mut self, head: &mut UnsafeListHead<T>)

§Safety

确保数据不会被 rust 所有权机制释放, 如果存在并发, 请保证一切操作的原子性.

Trait Implementations§

Source§

impl<T: Clone> Clone for UnsafeListNode<T>

Source§

fn clone(&self) -> UnsafeListNode<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> Default for UnsafeListNode<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T: Copy> Copy for UnsafeListNode<T>

Auto Trait Implementations§

§

impl<T> Freeze for UnsafeListNode<T>

§

impl<T> RefUnwindSafe for UnsafeListNode<T>

§

impl<T> !Send for UnsafeListNode<T>

§

impl<T> !Sync for UnsafeListNode<T>

§

impl<T> Unpin for UnsafeListNode<T>

§

impl<T> UnwindSafe for UnsafeListNode<T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.