Add `(C-not exported)` tag to a `Payee` modifier with move semantics
[rust-lightning] / lightning / src / routing / router.rs
index 6caba67785ed9ae1175274469a5aeeb1338b5d4e..974ae74e4960f0c636670f721106aa4cb8d87d53 100644 (file)
@@ -232,6 +232,8 @@ impl Payee {
        }
 
        /// Includes a payment expiration in seconds relative to the UNIX epoch.
+       ///
+       /// (C-not exported) since bindings don't support move semantics
        pub fn with_expiry_time(self, expiry_time: u64) -> Self {
                Self { expiry_time: Some(expiry_time), ..self }
        }