refactor: re-formatted channel.rs file

This commit is contained in:
Yandrik 2023-03-15 15:18:31 +01:00
parent f2643a0076
commit 15b9db4c5d

View file

@ -38,6 +38,7 @@ pub struct Channel<T, const N: usize> {
}
unsafe impl<T, const N: usize> Send for Channel<T, N> {}
unsafe impl<T, const N: usize> Sync for Channel<T, N> {}
struct UnsafeAccess<'a, const N: usize> {
@ -124,7 +125,7 @@ pub enum TrySendError<T> {
}
impl<T> core::fmt::Debug for NoReceiver<T>
where
where
T: core::fmt::Debug,
{
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
@ -133,7 +134,7 @@ where
}
impl<T> core::fmt::Debug for TrySendError<T>
where
where
T: core::fmt::Debug,
{
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
@ -145,7 +146,7 @@ where
}
impl<T> PartialEq for TrySendError<T>
where
where
T: PartialEq,
{
fn eq(&self, other: &Self) -> bool {
@ -176,6 +177,7 @@ impl LinkPtr {
}
unsafe impl Send for LinkPtr {}
unsafe impl Sync for LinkPtr {}
impl<'a, T, const N: usize> core::fmt::Debug for Sender<'a, T, N> {