Parcourir la source

feat: add `#[must_use]` to constructors (#45)

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Eliza Weisman il y a 3 ans
Parent
commit
0299a6064d
4 fichiers modifiés avec 15 ajouts et 0 suppressions
  1. 5 0
      src/mpsc/async_impl.rs
  2. 6 0
      src/mpsc/blocking.rs
  3. 2 0
      src/static_thingbuf.rs
  4. 2 0
      src/thingbuf.rs

+ 5 - 0
src/mpsc/async_impl.rs

@@ -24,6 +24,7 @@ feature! {
     /// This channel will use the [default recycling policy].
     ///
     /// [recycling policy]: crate::recycling::DefaultRecycle
+    #[must_use]
     pub fn channel<T: Default + Clone>(capacity: usize) -> (Sender<T>, Receiver<T>) {
         with_recycle(capacity, recycling::DefaultRecycle::new())
     }
@@ -32,6 +33,7 @@ feature! {
     /// channel with the provided capacity and [recycling policy].
     ///
     /// [recycling policy]: crate::recycling::Recycle
+    #[must_use]
     pub fn with_recycle<T, R: Recycle<T>>(capacity: usize, recycle: R) -> (Sender<T, R>, Receiver<T, R>) {
         assert!(capacity > 0);
         let inner = Arc::new(Inner {
@@ -636,6 +638,7 @@ feature! {
         /// }
         /// ```
         /// [`split`]: StaticChannel::split
+        #[must_use]
         pub const fn new() -> Self {
             Self {
                 core: ChannelCore::new(CAPACITY),
@@ -658,6 +661,7 @@ feature! {
         /// # Panics
         ///
         /// If the channel has already been split.
+        #[must_use]
         pub fn split(&'static self) -> (StaticSender<T, R>, StaticReceiver<T, R>) {
             self.try_split().expect("channel already split")
         }
@@ -668,6 +672,7 @@ feature! {
         /// A static channel can only be split a single time. If
         /// [`StaticChannel::split`] or [`StaticChannel::try_split`] have been
         /// called previously, this method returns `None`.
+        #[must_use]
         pub fn try_split(&'static self) -> Option<(StaticSender<T, R>, StaticReceiver<T, R>)> {
             self.is_split
                 .compare_exchange(false, true, Ordering::SeqCst, Ordering::SeqCst)

+ 6 - 0
src/mpsc/blocking.rs

@@ -24,6 +24,7 @@ use errors::*;
 /// This channel will use the [default recycling policy].
 ///
 /// [recycling policy]: crate::recycling::DefaultRecycle
+#[must_use]
 pub fn channel<T: Default + Clone>(capacity: usize) -> (Sender<T>, Receiver<T>) {
     with_recycle(capacity, recycling::DefaultRecycle::new())
 }
@@ -32,6 +33,7 @@ pub fn channel<T: Default + Clone>(capacity: usize) -> (Sender<T>, Receiver<T>)
 /// the provided [recycling policy].
 ///
 /// [recycling policy]: crate::recycling::Recycle
+#[must_use]
 pub fn with_recycle<T, R: Recycle<T>>(
     capacity: usize,
     recycle: R,
@@ -48,6 +50,7 @@ pub fn with_recycle<T, R: Recycle<T>>(
     let rx = Receiver { inner };
     (tx, rx)
 }
+
 /// Synchronously receives values from associated [`Sender`]s.
 ///
 /// Instances of this struct are created by the [`channel`] and
@@ -184,6 +187,7 @@ feature! {
         ///
         /// [async]: crate::mpsc::StaticChannel
         /// [`split`]: StaticChannel::split
+        #[must_use]
         pub const fn new() -> Self {
             Self {
                 core: ChannelCore::new(CAPACITY),
@@ -206,6 +210,7 @@ feature! {
         /// # Panics
         ///
         /// If the channel has already been split.
+        #[must_use]
         pub fn split(&'static self) -> (StaticSender<T, R>, StaticReceiver<T, R>) {
             self.try_split().expect("channel already split")
         }
@@ -216,6 +221,7 @@ feature! {
         /// A static channel can only be split a single time. If
         /// [`StaticChannel::split`] or [`StaticChannel::try_split`] have been
         /// called previously, this method returns `None`.
+        #[must_use]
         pub fn try_split(&'static self) -> Option<(StaticSender<T, R>, StaticReceiver<T, R>)> {
             self.is_split
                 .compare_exchange(false, true, Ordering::SeqCst, Ordering::SeqCst)

+ 2 - 0
src/static_thingbuf.rs

@@ -207,6 +207,7 @@ impl<T, const CAP: usize> StaticThingBuf<T, CAP> {
     /// This queue will use the [default recycling policy].
     ///
     /// [recycling policy]: crate::recycling::DefaultRecycle
+    #[must_use]
     pub const fn new() -> Self {
         Self::with_recycle(recycling::DefaultRecycle::new())
     }
@@ -217,6 +218,7 @@ impl<T, const CAP: usize, R> StaticThingBuf<T, CAP, R> {
     /// the provided [recycling policy].
     ///
     /// [recycling policy]: crate::recycling::Recycle
+    #[must_use]
     pub const fn with_recycle(recycle: R) -> Self {
         StaticThingBuf {
             core: Core::new(CAP),

+ 2 - 0
src/thingbuf.rs

@@ -190,6 +190,7 @@ pub struct ThingBuf<T, R = recycling::DefaultRecycle> {
 
 impl<T: Default + Clone> ThingBuf<T> {
     /// Returns a new `ThingBuf` with space for `capacity` elements.
+    #[must_use]
     pub fn new(capacity: usize) -> Self {
         Self::with_recycle(capacity, recycling::DefaultRecycle::new())
     }
@@ -300,6 +301,7 @@ where
     /// the provided [recycling policy].
     ///
     /// [recycling policy]: crate::recycling::Recycle
+    #[must_use]
     pub fn with_recycle(capacity: usize, recycle: R) -> Self {
         assert!(capacity > 0);
         Self {