Merge pull request #18 from TheBlueMatt/2021-04-invoice-incl
[ldk-c-bindings] / lightning-c-bindings / src / lightning / ln / msgs.rs
1 // This file is Copyright its original authors, visible in version control
2 // history and in the source files from which this was generated.
3 //
4 // This file is licensed under the license available in the LICENSE or LICENSE.md
5 // file in the root of this repository or, if no such file exists, the same
6 // license as that which applies to the original source files from which this
7 // source was automatically generated.
8
9 //! Wire messages, traits representing wire message handlers, and a few error types live here.
10 //!
11 //! For a normal node you probably don't need to use anything here, however, if you wish to split a
12 //! node into an internet-facing route/message socket handling daemon and a separate daemon (or
13 //! server entirely) which handles only channel-related messages you may wish to implement
14 //! ChannelMessageHandler yourself and use it to re-serialize messages and pass them across
15 //! daemons/servers.
16 //!
17 //! Note that if you go with such an architecture (instead of passing raw socket events to a
18 //! non-internet-facing system) you trust the frontend internet-facing system to not lie about the
19 //! source node_id of the message, however this does allow you to significantly reduce bandwidth
20 //! between the systems as routing messages can represent a significant chunk of bandwidth usage
21 //! (especially for non-channel-publicly-announcing nodes). As an alternate design which avoids
22 //! this issue, if you have sufficient bidirectional bandwidth between your systems, you may send
23 //! raw socket events into your non-internet-facing system and then send routing events back to
24 //! track the network on the less-secure system.
25
26 use std::str::FromStr;
27 use std::ffi::c_void;
28 use bitcoin::hashes::Hash;
29 use crate::c_types::*;
30
31
32 use lightning::ln::msgs::DecodeError as nativeDecodeErrorImport;
33 type nativeDecodeError = nativeDecodeErrorImport;
34
35 /// An error in decoding a message or struct.
36 #[must_use]
37 #[repr(C)]
38 pub struct DecodeError {
39         /// A pointer to the opaque Rust object.
40
41         /// Nearly everywhere, inner must be non-null, however in places where
42         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
43         pub inner: *mut nativeDecodeError,
44         /// Indicates that this is the only struct which contains the same pointer.
45
46         /// Rust functions which take ownership of an object provided via an argument require
47         /// this to be true and invalidate the object pointed to by inner.
48         pub is_owned: bool,
49 }
50
51 impl Drop for DecodeError {
52         fn drop(&mut self) {
53                 if self.is_owned && !<*mut nativeDecodeError>::is_null(self.inner) {
54                         let _ = unsafe { Box::from_raw(self.inner) };
55                 }
56         }
57 }
58 /// Frees any resources used by the DecodeError, if is_owned is set and inner is non-NULL.
59 #[no_mangle]
60 pub extern "C" fn DecodeError_free(this_obj: DecodeError) { }
61 #[allow(unused)]
62 /// Used only if an object of this type is returned as a trait impl by a method
63 extern "C" fn DecodeError_free_void(this_ptr: *mut c_void) {
64         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeDecodeError); }
65 }
66 #[allow(unused)]
67 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
68 impl DecodeError {
69         pub(crate) fn take_inner(mut self) -> *mut nativeDecodeError {
70                 assert!(self.is_owned);
71                 let ret = self.inner;
72                 self.inner = std::ptr::null_mut();
73                 ret
74         }
75 }
76 impl Clone for DecodeError {
77         fn clone(&self) -> Self {
78                 Self {
79                         inner: if <*mut nativeDecodeError>::is_null(self.inner) { std::ptr::null_mut() } else {
80                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
81                         is_owned: true,
82                 }
83         }
84 }
85 #[allow(unused)]
86 /// Used only if an object of this type is returned as a trait impl by a method
87 pub(crate) extern "C" fn DecodeError_clone_void(this_ptr: *const c_void) -> *mut c_void {
88         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeDecodeError)).clone() })) as *mut c_void
89 }
90 #[no_mangle]
91 /// Creates a copy of the DecodeError
92 pub extern "C" fn DecodeError_clone(orig: &DecodeError) -> DecodeError {
93         orig.clone()
94 }
95
96 use lightning::ln::msgs::Init as nativeInitImport;
97 type nativeInit = nativeInitImport;
98
99 /// An init message to be sent or received from a peer
100 #[must_use]
101 #[repr(C)]
102 pub struct Init {
103         /// A pointer to the opaque Rust object.
104
105         /// Nearly everywhere, inner must be non-null, however in places where
106         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
107         pub inner: *mut nativeInit,
108         /// Indicates that this is the only struct which contains the same pointer.
109
110         /// Rust functions which take ownership of an object provided via an argument require
111         /// this to be true and invalidate the object pointed to by inner.
112         pub is_owned: bool,
113 }
114
115 impl Drop for Init {
116         fn drop(&mut self) {
117                 if self.is_owned && !<*mut nativeInit>::is_null(self.inner) {
118                         let _ = unsafe { Box::from_raw(self.inner) };
119                 }
120         }
121 }
122 /// Frees any resources used by the Init, if is_owned is set and inner is non-NULL.
123 #[no_mangle]
124 pub extern "C" fn Init_free(this_obj: Init) { }
125 #[allow(unused)]
126 /// Used only if an object of this type is returned as a trait impl by a method
127 extern "C" fn Init_free_void(this_ptr: *mut c_void) {
128         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeInit); }
129 }
130 #[allow(unused)]
131 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
132 impl Init {
133         pub(crate) fn take_inner(mut self) -> *mut nativeInit {
134                 assert!(self.is_owned);
135                 let ret = self.inner;
136                 self.inner = std::ptr::null_mut();
137                 ret
138         }
139 }
140 /// The relevant features which the sender supports
141 #[no_mangle]
142 pub extern "C" fn Init_get_features(this_ptr: &Init) -> crate::lightning::ln::features::InitFeatures {
143         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.features;
144         crate::lightning::ln::features::InitFeatures { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
145 }
146 /// The relevant features which the sender supports
147 #[no_mangle]
148 pub extern "C" fn Init_set_features(this_ptr: &mut Init, mut val: crate::lightning::ln::features::InitFeatures) {
149         unsafe { &mut *this_ptr.inner }.features = *unsafe { Box::from_raw(val.take_inner()) };
150 }
151 /// Constructs a new Init given each field
152 #[must_use]
153 #[no_mangle]
154 pub extern "C" fn Init_new(mut features_arg: crate::lightning::ln::features::InitFeatures) -> Init {
155         Init { inner: Box::into_raw(Box::new(nativeInit {
156                 features: *unsafe { Box::from_raw(features_arg.take_inner()) },
157         })), is_owned: true }
158 }
159 impl Clone for Init {
160         fn clone(&self) -> Self {
161                 Self {
162                         inner: if <*mut nativeInit>::is_null(self.inner) { std::ptr::null_mut() } else {
163                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
164                         is_owned: true,
165                 }
166         }
167 }
168 #[allow(unused)]
169 /// Used only if an object of this type is returned as a trait impl by a method
170 pub(crate) extern "C" fn Init_clone_void(this_ptr: *const c_void) -> *mut c_void {
171         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeInit)).clone() })) as *mut c_void
172 }
173 #[no_mangle]
174 /// Creates a copy of the Init
175 pub extern "C" fn Init_clone(orig: &Init) -> Init {
176         orig.clone()
177 }
178
179 use lightning::ln::msgs::ErrorMessage as nativeErrorMessageImport;
180 type nativeErrorMessage = nativeErrorMessageImport;
181
182 /// An error message to be sent or received from a peer
183 #[must_use]
184 #[repr(C)]
185 pub struct ErrorMessage {
186         /// A pointer to the opaque Rust object.
187
188         /// Nearly everywhere, inner must be non-null, however in places where
189         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
190         pub inner: *mut nativeErrorMessage,
191         /// Indicates that this is the only struct which contains the same pointer.
192
193         /// Rust functions which take ownership of an object provided via an argument require
194         /// this to be true and invalidate the object pointed to by inner.
195         pub is_owned: bool,
196 }
197
198 impl Drop for ErrorMessage {
199         fn drop(&mut self) {
200                 if self.is_owned && !<*mut nativeErrorMessage>::is_null(self.inner) {
201                         let _ = unsafe { Box::from_raw(self.inner) };
202                 }
203         }
204 }
205 /// Frees any resources used by the ErrorMessage, if is_owned is set and inner is non-NULL.
206 #[no_mangle]
207 pub extern "C" fn ErrorMessage_free(this_obj: ErrorMessage) { }
208 #[allow(unused)]
209 /// Used only if an object of this type is returned as a trait impl by a method
210 extern "C" fn ErrorMessage_free_void(this_ptr: *mut c_void) {
211         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeErrorMessage); }
212 }
213 #[allow(unused)]
214 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
215 impl ErrorMessage {
216         pub(crate) fn take_inner(mut self) -> *mut nativeErrorMessage {
217                 assert!(self.is_owned);
218                 let ret = self.inner;
219                 self.inner = std::ptr::null_mut();
220                 ret
221         }
222 }
223 /// The channel ID involved in the error
224 #[no_mangle]
225 pub extern "C" fn ErrorMessage_get_channel_id(this_ptr: &ErrorMessage) -> *const [u8; 32] {
226         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
227         inner_val
228 }
229 /// The channel ID involved in the error
230 #[no_mangle]
231 pub extern "C" fn ErrorMessage_set_channel_id(this_ptr: &mut ErrorMessage, mut val: crate::c_types::ThirtyTwoBytes) {
232         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
233 }
234 /// A possibly human-readable error description.
235 /// The string should be sanitized before it is used (e.g. emitted to logs
236 /// or printed to stdout).  Otherwise, a well crafted error message may trigger a security
237 /// vulnerability in the terminal emulator or the logging subsystem.
238 #[no_mangle]
239 pub extern "C" fn ErrorMessage_get_data(this_ptr: &ErrorMessage) -> crate::c_types::Str {
240         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.data;
241         inner_val.as_str().into()
242 }
243 /// A possibly human-readable error description.
244 /// The string should be sanitized before it is used (e.g. emitted to logs
245 /// or printed to stdout).  Otherwise, a well crafted error message may trigger a security
246 /// vulnerability in the terminal emulator or the logging subsystem.
247 #[no_mangle]
248 pub extern "C" fn ErrorMessage_set_data(this_ptr: &mut ErrorMessage, mut val: crate::c_types::derived::CVec_u8Z) {
249         unsafe { &mut *this_ptr.inner }.data = String::from_utf8(val.into_rust()).unwrap();
250 }
251 /// Constructs a new ErrorMessage given each field
252 #[must_use]
253 #[no_mangle]
254 pub extern "C" fn ErrorMessage_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut data_arg: crate::c_types::derived::CVec_u8Z) -> ErrorMessage {
255         ErrorMessage { inner: Box::into_raw(Box::new(nativeErrorMessage {
256                 channel_id: channel_id_arg.data,
257                 data: String::from_utf8(data_arg.into_rust()).unwrap(),
258         })), is_owned: true }
259 }
260 impl Clone for ErrorMessage {
261         fn clone(&self) -> Self {
262                 Self {
263                         inner: if <*mut nativeErrorMessage>::is_null(self.inner) { std::ptr::null_mut() } else {
264                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
265                         is_owned: true,
266                 }
267         }
268 }
269 #[allow(unused)]
270 /// Used only if an object of this type is returned as a trait impl by a method
271 pub(crate) extern "C" fn ErrorMessage_clone_void(this_ptr: *const c_void) -> *mut c_void {
272         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeErrorMessage)).clone() })) as *mut c_void
273 }
274 #[no_mangle]
275 /// Creates a copy of the ErrorMessage
276 pub extern "C" fn ErrorMessage_clone(orig: &ErrorMessage) -> ErrorMessage {
277         orig.clone()
278 }
279
280 use lightning::ln::msgs::Ping as nativePingImport;
281 type nativePing = nativePingImport;
282
283 /// A ping message to be sent or received from a peer
284 #[must_use]
285 #[repr(C)]
286 pub struct Ping {
287         /// A pointer to the opaque Rust object.
288
289         /// Nearly everywhere, inner must be non-null, however in places where
290         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
291         pub inner: *mut nativePing,
292         /// Indicates that this is the only struct which contains the same pointer.
293
294         /// Rust functions which take ownership of an object provided via an argument require
295         /// this to be true and invalidate the object pointed to by inner.
296         pub is_owned: bool,
297 }
298
299 impl Drop for Ping {
300         fn drop(&mut self) {
301                 if self.is_owned && !<*mut nativePing>::is_null(self.inner) {
302                         let _ = unsafe { Box::from_raw(self.inner) };
303                 }
304         }
305 }
306 /// Frees any resources used by the Ping, if is_owned is set and inner is non-NULL.
307 #[no_mangle]
308 pub extern "C" fn Ping_free(this_obj: Ping) { }
309 #[allow(unused)]
310 /// Used only if an object of this type is returned as a trait impl by a method
311 extern "C" fn Ping_free_void(this_ptr: *mut c_void) {
312         unsafe { let _ = Box::from_raw(this_ptr as *mut nativePing); }
313 }
314 #[allow(unused)]
315 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
316 impl Ping {
317         pub(crate) fn take_inner(mut self) -> *mut nativePing {
318                 assert!(self.is_owned);
319                 let ret = self.inner;
320                 self.inner = std::ptr::null_mut();
321                 ret
322         }
323 }
324 /// The desired response length
325 #[no_mangle]
326 pub extern "C" fn Ping_get_ponglen(this_ptr: &Ping) -> u16 {
327         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.ponglen;
328         *inner_val
329 }
330 /// The desired response length
331 #[no_mangle]
332 pub extern "C" fn Ping_set_ponglen(this_ptr: &mut Ping, mut val: u16) {
333         unsafe { &mut *this_ptr.inner }.ponglen = val;
334 }
335 /// The ping packet size.
336 /// This field is not sent on the wire. byteslen zeros are sent.
337 #[no_mangle]
338 pub extern "C" fn Ping_get_byteslen(this_ptr: &Ping) -> u16 {
339         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.byteslen;
340         *inner_val
341 }
342 /// The ping packet size.
343 /// This field is not sent on the wire. byteslen zeros are sent.
344 #[no_mangle]
345 pub extern "C" fn Ping_set_byteslen(this_ptr: &mut Ping, mut val: u16) {
346         unsafe { &mut *this_ptr.inner }.byteslen = val;
347 }
348 /// Constructs a new Ping given each field
349 #[must_use]
350 #[no_mangle]
351 pub extern "C" fn Ping_new(mut ponglen_arg: u16, mut byteslen_arg: u16) -> Ping {
352         Ping { inner: Box::into_raw(Box::new(nativePing {
353                 ponglen: ponglen_arg,
354                 byteslen: byteslen_arg,
355         })), is_owned: true }
356 }
357 impl Clone for Ping {
358         fn clone(&self) -> Self {
359                 Self {
360                         inner: if <*mut nativePing>::is_null(self.inner) { std::ptr::null_mut() } else {
361                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
362                         is_owned: true,
363                 }
364         }
365 }
366 #[allow(unused)]
367 /// Used only if an object of this type is returned as a trait impl by a method
368 pub(crate) extern "C" fn Ping_clone_void(this_ptr: *const c_void) -> *mut c_void {
369         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativePing)).clone() })) as *mut c_void
370 }
371 #[no_mangle]
372 /// Creates a copy of the Ping
373 pub extern "C" fn Ping_clone(orig: &Ping) -> Ping {
374         orig.clone()
375 }
376
377 use lightning::ln::msgs::Pong as nativePongImport;
378 type nativePong = nativePongImport;
379
380 /// A pong message to be sent or received from a peer
381 #[must_use]
382 #[repr(C)]
383 pub struct Pong {
384         /// A pointer to the opaque Rust object.
385
386         /// Nearly everywhere, inner must be non-null, however in places where
387         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
388         pub inner: *mut nativePong,
389         /// Indicates that this is the only struct which contains the same pointer.
390
391         /// Rust functions which take ownership of an object provided via an argument require
392         /// this to be true and invalidate the object pointed to by inner.
393         pub is_owned: bool,
394 }
395
396 impl Drop for Pong {
397         fn drop(&mut self) {
398                 if self.is_owned && !<*mut nativePong>::is_null(self.inner) {
399                         let _ = unsafe { Box::from_raw(self.inner) };
400                 }
401         }
402 }
403 /// Frees any resources used by the Pong, if is_owned is set and inner is non-NULL.
404 #[no_mangle]
405 pub extern "C" fn Pong_free(this_obj: Pong) { }
406 #[allow(unused)]
407 /// Used only if an object of this type is returned as a trait impl by a method
408 extern "C" fn Pong_free_void(this_ptr: *mut c_void) {
409         unsafe { let _ = Box::from_raw(this_ptr as *mut nativePong); }
410 }
411 #[allow(unused)]
412 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
413 impl Pong {
414         pub(crate) fn take_inner(mut self) -> *mut nativePong {
415                 assert!(self.is_owned);
416                 let ret = self.inner;
417                 self.inner = std::ptr::null_mut();
418                 ret
419         }
420 }
421 /// The pong packet size.
422 /// This field is not sent on the wire. byteslen zeros are sent.
423 #[no_mangle]
424 pub extern "C" fn Pong_get_byteslen(this_ptr: &Pong) -> u16 {
425         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.byteslen;
426         *inner_val
427 }
428 /// The pong packet size.
429 /// This field is not sent on the wire. byteslen zeros are sent.
430 #[no_mangle]
431 pub extern "C" fn Pong_set_byteslen(this_ptr: &mut Pong, mut val: u16) {
432         unsafe { &mut *this_ptr.inner }.byteslen = val;
433 }
434 /// Constructs a new Pong given each field
435 #[must_use]
436 #[no_mangle]
437 pub extern "C" fn Pong_new(mut byteslen_arg: u16) -> Pong {
438         Pong { inner: Box::into_raw(Box::new(nativePong {
439                 byteslen: byteslen_arg,
440         })), is_owned: true }
441 }
442 impl Clone for Pong {
443         fn clone(&self) -> Self {
444                 Self {
445                         inner: if <*mut nativePong>::is_null(self.inner) { std::ptr::null_mut() } else {
446                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
447                         is_owned: true,
448                 }
449         }
450 }
451 #[allow(unused)]
452 /// Used only if an object of this type is returned as a trait impl by a method
453 pub(crate) extern "C" fn Pong_clone_void(this_ptr: *const c_void) -> *mut c_void {
454         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativePong)).clone() })) as *mut c_void
455 }
456 #[no_mangle]
457 /// Creates a copy of the Pong
458 pub extern "C" fn Pong_clone(orig: &Pong) -> Pong {
459         orig.clone()
460 }
461
462 use lightning::ln::msgs::OpenChannel as nativeOpenChannelImport;
463 type nativeOpenChannel = nativeOpenChannelImport;
464
465 /// An open_channel message to be sent or received from a peer
466 #[must_use]
467 #[repr(C)]
468 pub struct OpenChannel {
469         /// A pointer to the opaque Rust object.
470
471         /// Nearly everywhere, inner must be non-null, however in places where
472         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
473         pub inner: *mut nativeOpenChannel,
474         /// Indicates that this is the only struct which contains the same pointer.
475
476         /// Rust functions which take ownership of an object provided via an argument require
477         /// this to be true and invalidate the object pointed to by inner.
478         pub is_owned: bool,
479 }
480
481 impl Drop for OpenChannel {
482         fn drop(&mut self) {
483                 if self.is_owned && !<*mut nativeOpenChannel>::is_null(self.inner) {
484                         let _ = unsafe { Box::from_raw(self.inner) };
485                 }
486         }
487 }
488 /// Frees any resources used by the OpenChannel, if is_owned is set and inner is non-NULL.
489 #[no_mangle]
490 pub extern "C" fn OpenChannel_free(this_obj: OpenChannel) { }
491 #[allow(unused)]
492 /// Used only if an object of this type is returned as a trait impl by a method
493 extern "C" fn OpenChannel_free_void(this_ptr: *mut c_void) {
494         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeOpenChannel); }
495 }
496 #[allow(unused)]
497 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
498 impl OpenChannel {
499         pub(crate) fn take_inner(mut self) -> *mut nativeOpenChannel {
500                 assert!(self.is_owned);
501                 let ret = self.inner;
502                 self.inner = std::ptr::null_mut();
503                 ret
504         }
505 }
506 /// The genesis hash of the blockchain where the channel is to be opened
507 #[no_mangle]
508 pub extern "C" fn OpenChannel_get_chain_hash(this_ptr: &OpenChannel) -> *const [u8; 32] {
509         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_hash;
510         inner_val.as_inner()
511 }
512 /// The genesis hash of the blockchain where the channel is to be opened
513 #[no_mangle]
514 pub extern "C" fn OpenChannel_set_chain_hash(this_ptr: &mut OpenChannel, mut val: crate::c_types::ThirtyTwoBytes) {
515         unsafe { &mut *this_ptr.inner }.chain_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
516 }
517 /// A temporary channel ID, until the funding outpoint is announced
518 #[no_mangle]
519 pub extern "C" fn OpenChannel_get_temporary_channel_id(this_ptr: &OpenChannel) -> *const [u8; 32] {
520         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.temporary_channel_id;
521         inner_val
522 }
523 /// A temporary channel ID, until the funding outpoint is announced
524 #[no_mangle]
525 pub extern "C" fn OpenChannel_set_temporary_channel_id(this_ptr: &mut OpenChannel, mut val: crate::c_types::ThirtyTwoBytes) {
526         unsafe { &mut *this_ptr.inner }.temporary_channel_id = val.data;
527 }
528 /// The channel value
529 #[no_mangle]
530 pub extern "C" fn OpenChannel_get_funding_satoshis(this_ptr: &OpenChannel) -> u64 {
531         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_satoshis;
532         *inner_val
533 }
534 /// The channel value
535 #[no_mangle]
536 pub extern "C" fn OpenChannel_set_funding_satoshis(this_ptr: &mut OpenChannel, mut val: u64) {
537         unsafe { &mut *this_ptr.inner }.funding_satoshis = val;
538 }
539 /// The amount to push to the counterparty as part of the open, in milli-satoshi
540 #[no_mangle]
541 pub extern "C" fn OpenChannel_get_push_msat(this_ptr: &OpenChannel) -> u64 {
542         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.push_msat;
543         *inner_val
544 }
545 /// The amount to push to the counterparty as part of the open, in milli-satoshi
546 #[no_mangle]
547 pub extern "C" fn OpenChannel_set_push_msat(this_ptr: &mut OpenChannel, mut val: u64) {
548         unsafe { &mut *this_ptr.inner }.push_msat = val;
549 }
550 /// The threshold below which outputs on transactions broadcast by sender will be omitted
551 #[no_mangle]
552 pub extern "C" fn OpenChannel_get_dust_limit_satoshis(this_ptr: &OpenChannel) -> u64 {
553         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.dust_limit_satoshis;
554         *inner_val
555 }
556 /// The threshold below which outputs on transactions broadcast by sender will be omitted
557 #[no_mangle]
558 pub extern "C" fn OpenChannel_set_dust_limit_satoshis(this_ptr: &mut OpenChannel, mut val: u64) {
559         unsafe { &mut *this_ptr.inner }.dust_limit_satoshis = val;
560 }
561 /// The maximum inbound HTLC value in flight towards sender, in milli-satoshi
562 #[no_mangle]
563 pub extern "C" fn OpenChannel_get_max_htlc_value_in_flight_msat(this_ptr: &OpenChannel) -> u64 {
564         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.max_htlc_value_in_flight_msat;
565         *inner_val
566 }
567 /// The maximum inbound HTLC value in flight towards sender, in milli-satoshi
568 #[no_mangle]
569 pub extern "C" fn OpenChannel_set_max_htlc_value_in_flight_msat(this_ptr: &mut OpenChannel, mut val: u64) {
570         unsafe { &mut *this_ptr.inner }.max_htlc_value_in_flight_msat = val;
571 }
572 /// The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
573 #[no_mangle]
574 pub extern "C" fn OpenChannel_get_channel_reserve_satoshis(this_ptr: &OpenChannel) -> u64 {
575         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_reserve_satoshis;
576         *inner_val
577 }
578 /// The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
579 #[no_mangle]
580 pub extern "C" fn OpenChannel_set_channel_reserve_satoshis(this_ptr: &mut OpenChannel, mut val: u64) {
581         unsafe { &mut *this_ptr.inner }.channel_reserve_satoshis = val;
582 }
583 /// The minimum HTLC size incoming to sender, in milli-satoshi
584 #[no_mangle]
585 pub extern "C" fn OpenChannel_get_htlc_minimum_msat(this_ptr: &OpenChannel) -> u64 {
586         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_minimum_msat;
587         *inner_val
588 }
589 /// The minimum HTLC size incoming to sender, in milli-satoshi
590 #[no_mangle]
591 pub extern "C" fn OpenChannel_set_htlc_minimum_msat(this_ptr: &mut OpenChannel, mut val: u64) {
592         unsafe { &mut *this_ptr.inner }.htlc_minimum_msat = val;
593 }
594 /// The feerate per 1000-weight of sender generated transactions, until updated by update_fee
595 #[no_mangle]
596 pub extern "C" fn OpenChannel_get_feerate_per_kw(this_ptr: &OpenChannel) -> u32 {
597         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.feerate_per_kw;
598         *inner_val
599 }
600 /// The feerate per 1000-weight of sender generated transactions, until updated by update_fee
601 #[no_mangle]
602 pub extern "C" fn OpenChannel_set_feerate_per_kw(this_ptr: &mut OpenChannel, mut val: u32) {
603         unsafe { &mut *this_ptr.inner }.feerate_per_kw = val;
604 }
605 /// The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
606 #[no_mangle]
607 pub extern "C" fn OpenChannel_get_to_self_delay(this_ptr: &OpenChannel) -> u16 {
608         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.to_self_delay;
609         *inner_val
610 }
611 /// The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
612 #[no_mangle]
613 pub extern "C" fn OpenChannel_set_to_self_delay(this_ptr: &mut OpenChannel, mut val: u16) {
614         unsafe { &mut *this_ptr.inner }.to_self_delay = val;
615 }
616 /// The maximum number of inbound HTLCs towards sender
617 #[no_mangle]
618 pub extern "C" fn OpenChannel_get_max_accepted_htlcs(this_ptr: &OpenChannel) -> u16 {
619         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.max_accepted_htlcs;
620         *inner_val
621 }
622 /// The maximum number of inbound HTLCs towards sender
623 #[no_mangle]
624 pub extern "C" fn OpenChannel_set_max_accepted_htlcs(this_ptr: &mut OpenChannel, mut val: u16) {
625         unsafe { &mut *this_ptr.inner }.max_accepted_htlcs = val;
626 }
627 /// The sender's key controlling the funding transaction
628 #[no_mangle]
629 pub extern "C" fn OpenChannel_get_funding_pubkey(this_ptr: &OpenChannel) -> crate::c_types::PublicKey {
630         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_pubkey;
631         crate::c_types::PublicKey::from_rust(&inner_val)
632 }
633 /// The sender's key controlling the funding transaction
634 #[no_mangle]
635 pub extern "C" fn OpenChannel_set_funding_pubkey(this_ptr: &mut OpenChannel, mut val: crate::c_types::PublicKey) {
636         unsafe { &mut *this_ptr.inner }.funding_pubkey = val.into_rust();
637 }
638 /// Used to derive a revocation key for transactions broadcast by counterparty
639 #[no_mangle]
640 pub extern "C" fn OpenChannel_get_revocation_basepoint(this_ptr: &OpenChannel) -> crate::c_types::PublicKey {
641         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.revocation_basepoint;
642         crate::c_types::PublicKey::from_rust(&inner_val)
643 }
644 /// Used to derive a revocation key for transactions broadcast by counterparty
645 #[no_mangle]
646 pub extern "C" fn OpenChannel_set_revocation_basepoint(this_ptr: &mut OpenChannel, mut val: crate::c_types::PublicKey) {
647         unsafe { &mut *this_ptr.inner }.revocation_basepoint = val.into_rust();
648 }
649 /// A payment key to sender for transactions broadcast by counterparty
650 #[no_mangle]
651 pub extern "C" fn OpenChannel_get_payment_point(this_ptr: &OpenChannel) -> crate::c_types::PublicKey {
652         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.payment_point;
653         crate::c_types::PublicKey::from_rust(&inner_val)
654 }
655 /// A payment key to sender for transactions broadcast by counterparty
656 #[no_mangle]
657 pub extern "C" fn OpenChannel_set_payment_point(this_ptr: &mut OpenChannel, mut val: crate::c_types::PublicKey) {
658         unsafe { &mut *this_ptr.inner }.payment_point = val.into_rust();
659 }
660 /// Used to derive a payment key to sender for transactions broadcast by sender
661 #[no_mangle]
662 pub extern "C" fn OpenChannel_get_delayed_payment_basepoint(this_ptr: &OpenChannel) -> crate::c_types::PublicKey {
663         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.delayed_payment_basepoint;
664         crate::c_types::PublicKey::from_rust(&inner_val)
665 }
666 /// Used to derive a payment key to sender for transactions broadcast by sender
667 #[no_mangle]
668 pub extern "C" fn OpenChannel_set_delayed_payment_basepoint(this_ptr: &mut OpenChannel, mut val: crate::c_types::PublicKey) {
669         unsafe { &mut *this_ptr.inner }.delayed_payment_basepoint = val.into_rust();
670 }
671 /// Used to derive an HTLC payment key to sender
672 #[no_mangle]
673 pub extern "C" fn OpenChannel_get_htlc_basepoint(this_ptr: &OpenChannel) -> crate::c_types::PublicKey {
674         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_basepoint;
675         crate::c_types::PublicKey::from_rust(&inner_val)
676 }
677 /// Used to derive an HTLC payment key to sender
678 #[no_mangle]
679 pub extern "C" fn OpenChannel_set_htlc_basepoint(this_ptr: &mut OpenChannel, mut val: crate::c_types::PublicKey) {
680         unsafe { &mut *this_ptr.inner }.htlc_basepoint = val.into_rust();
681 }
682 /// The first to-be-broadcast-by-sender transaction's per commitment point
683 #[no_mangle]
684 pub extern "C" fn OpenChannel_get_first_per_commitment_point(this_ptr: &OpenChannel) -> crate::c_types::PublicKey {
685         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.first_per_commitment_point;
686         crate::c_types::PublicKey::from_rust(&inner_val)
687 }
688 /// The first to-be-broadcast-by-sender transaction's per commitment point
689 #[no_mangle]
690 pub extern "C" fn OpenChannel_set_first_per_commitment_point(this_ptr: &mut OpenChannel, mut val: crate::c_types::PublicKey) {
691         unsafe { &mut *this_ptr.inner }.first_per_commitment_point = val.into_rust();
692 }
693 /// Channel flags
694 #[no_mangle]
695 pub extern "C" fn OpenChannel_get_channel_flags(this_ptr: &OpenChannel) -> u8 {
696         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_flags;
697         *inner_val
698 }
699 /// Channel flags
700 #[no_mangle]
701 pub extern "C" fn OpenChannel_set_channel_flags(this_ptr: &mut OpenChannel, mut val: u8) {
702         unsafe { &mut *this_ptr.inner }.channel_flags = val;
703 }
704 impl Clone for OpenChannel {
705         fn clone(&self) -> Self {
706                 Self {
707                         inner: if <*mut nativeOpenChannel>::is_null(self.inner) { std::ptr::null_mut() } else {
708                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
709                         is_owned: true,
710                 }
711         }
712 }
713 #[allow(unused)]
714 /// Used only if an object of this type is returned as a trait impl by a method
715 pub(crate) extern "C" fn OpenChannel_clone_void(this_ptr: *const c_void) -> *mut c_void {
716         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeOpenChannel)).clone() })) as *mut c_void
717 }
718 #[no_mangle]
719 /// Creates a copy of the OpenChannel
720 pub extern "C" fn OpenChannel_clone(orig: &OpenChannel) -> OpenChannel {
721         orig.clone()
722 }
723
724 use lightning::ln::msgs::AcceptChannel as nativeAcceptChannelImport;
725 type nativeAcceptChannel = nativeAcceptChannelImport;
726
727 /// An accept_channel message to be sent or received from a peer
728 #[must_use]
729 #[repr(C)]
730 pub struct AcceptChannel {
731         /// A pointer to the opaque Rust object.
732
733         /// Nearly everywhere, inner must be non-null, however in places where
734         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
735         pub inner: *mut nativeAcceptChannel,
736         /// Indicates that this is the only struct which contains the same pointer.
737
738         /// Rust functions which take ownership of an object provided via an argument require
739         /// this to be true and invalidate the object pointed to by inner.
740         pub is_owned: bool,
741 }
742
743 impl Drop for AcceptChannel {
744         fn drop(&mut self) {
745                 if self.is_owned && !<*mut nativeAcceptChannel>::is_null(self.inner) {
746                         let _ = unsafe { Box::from_raw(self.inner) };
747                 }
748         }
749 }
750 /// Frees any resources used by the AcceptChannel, if is_owned is set and inner is non-NULL.
751 #[no_mangle]
752 pub extern "C" fn AcceptChannel_free(this_obj: AcceptChannel) { }
753 #[allow(unused)]
754 /// Used only if an object of this type is returned as a trait impl by a method
755 extern "C" fn AcceptChannel_free_void(this_ptr: *mut c_void) {
756         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeAcceptChannel); }
757 }
758 #[allow(unused)]
759 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
760 impl AcceptChannel {
761         pub(crate) fn take_inner(mut self) -> *mut nativeAcceptChannel {
762                 assert!(self.is_owned);
763                 let ret = self.inner;
764                 self.inner = std::ptr::null_mut();
765                 ret
766         }
767 }
768 /// A temporary channel ID, until the funding outpoint is announced
769 #[no_mangle]
770 pub extern "C" fn AcceptChannel_get_temporary_channel_id(this_ptr: &AcceptChannel) -> *const [u8; 32] {
771         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.temporary_channel_id;
772         inner_val
773 }
774 /// A temporary channel ID, until the funding outpoint is announced
775 #[no_mangle]
776 pub extern "C" fn AcceptChannel_set_temporary_channel_id(this_ptr: &mut AcceptChannel, mut val: crate::c_types::ThirtyTwoBytes) {
777         unsafe { &mut *this_ptr.inner }.temporary_channel_id = val.data;
778 }
779 /// The threshold below which outputs on transactions broadcast by sender will be omitted
780 #[no_mangle]
781 pub extern "C" fn AcceptChannel_get_dust_limit_satoshis(this_ptr: &AcceptChannel) -> u64 {
782         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.dust_limit_satoshis;
783         *inner_val
784 }
785 /// The threshold below which outputs on transactions broadcast by sender will be omitted
786 #[no_mangle]
787 pub extern "C" fn AcceptChannel_set_dust_limit_satoshis(this_ptr: &mut AcceptChannel, mut val: u64) {
788         unsafe { &mut *this_ptr.inner }.dust_limit_satoshis = val;
789 }
790 /// The maximum inbound HTLC value in flight towards sender, in milli-satoshi
791 #[no_mangle]
792 pub extern "C" fn AcceptChannel_get_max_htlc_value_in_flight_msat(this_ptr: &AcceptChannel) -> u64 {
793         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.max_htlc_value_in_flight_msat;
794         *inner_val
795 }
796 /// The maximum inbound HTLC value in flight towards sender, in milli-satoshi
797 #[no_mangle]
798 pub extern "C" fn AcceptChannel_set_max_htlc_value_in_flight_msat(this_ptr: &mut AcceptChannel, mut val: u64) {
799         unsafe { &mut *this_ptr.inner }.max_htlc_value_in_flight_msat = val;
800 }
801 /// The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
802 #[no_mangle]
803 pub extern "C" fn AcceptChannel_get_channel_reserve_satoshis(this_ptr: &AcceptChannel) -> u64 {
804         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_reserve_satoshis;
805         *inner_val
806 }
807 /// The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
808 #[no_mangle]
809 pub extern "C" fn AcceptChannel_set_channel_reserve_satoshis(this_ptr: &mut AcceptChannel, mut val: u64) {
810         unsafe { &mut *this_ptr.inner }.channel_reserve_satoshis = val;
811 }
812 /// The minimum HTLC size incoming to sender, in milli-satoshi
813 #[no_mangle]
814 pub extern "C" fn AcceptChannel_get_htlc_minimum_msat(this_ptr: &AcceptChannel) -> u64 {
815         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_minimum_msat;
816         *inner_val
817 }
818 /// The minimum HTLC size incoming to sender, in milli-satoshi
819 #[no_mangle]
820 pub extern "C" fn AcceptChannel_set_htlc_minimum_msat(this_ptr: &mut AcceptChannel, mut val: u64) {
821         unsafe { &mut *this_ptr.inner }.htlc_minimum_msat = val;
822 }
823 /// Minimum depth of the funding transaction before the channel is considered open
824 #[no_mangle]
825 pub extern "C" fn AcceptChannel_get_minimum_depth(this_ptr: &AcceptChannel) -> u32 {
826         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.minimum_depth;
827         *inner_val
828 }
829 /// Minimum depth of the funding transaction before the channel is considered open
830 #[no_mangle]
831 pub extern "C" fn AcceptChannel_set_minimum_depth(this_ptr: &mut AcceptChannel, mut val: u32) {
832         unsafe { &mut *this_ptr.inner }.minimum_depth = val;
833 }
834 /// The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
835 #[no_mangle]
836 pub extern "C" fn AcceptChannel_get_to_self_delay(this_ptr: &AcceptChannel) -> u16 {
837         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.to_self_delay;
838         *inner_val
839 }
840 /// The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
841 #[no_mangle]
842 pub extern "C" fn AcceptChannel_set_to_self_delay(this_ptr: &mut AcceptChannel, mut val: u16) {
843         unsafe { &mut *this_ptr.inner }.to_self_delay = val;
844 }
845 /// The maximum number of inbound HTLCs towards sender
846 #[no_mangle]
847 pub extern "C" fn AcceptChannel_get_max_accepted_htlcs(this_ptr: &AcceptChannel) -> u16 {
848         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.max_accepted_htlcs;
849         *inner_val
850 }
851 /// The maximum number of inbound HTLCs towards sender
852 #[no_mangle]
853 pub extern "C" fn AcceptChannel_set_max_accepted_htlcs(this_ptr: &mut AcceptChannel, mut val: u16) {
854         unsafe { &mut *this_ptr.inner }.max_accepted_htlcs = val;
855 }
856 /// The sender's key controlling the funding transaction
857 #[no_mangle]
858 pub extern "C" fn AcceptChannel_get_funding_pubkey(this_ptr: &AcceptChannel) -> crate::c_types::PublicKey {
859         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_pubkey;
860         crate::c_types::PublicKey::from_rust(&inner_val)
861 }
862 /// The sender's key controlling the funding transaction
863 #[no_mangle]
864 pub extern "C" fn AcceptChannel_set_funding_pubkey(this_ptr: &mut AcceptChannel, mut val: crate::c_types::PublicKey) {
865         unsafe { &mut *this_ptr.inner }.funding_pubkey = val.into_rust();
866 }
867 /// Used to derive a revocation key for transactions broadcast by counterparty
868 #[no_mangle]
869 pub extern "C" fn AcceptChannel_get_revocation_basepoint(this_ptr: &AcceptChannel) -> crate::c_types::PublicKey {
870         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.revocation_basepoint;
871         crate::c_types::PublicKey::from_rust(&inner_val)
872 }
873 /// Used to derive a revocation key for transactions broadcast by counterparty
874 #[no_mangle]
875 pub extern "C" fn AcceptChannel_set_revocation_basepoint(this_ptr: &mut AcceptChannel, mut val: crate::c_types::PublicKey) {
876         unsafe { &mut *this_ptr.inner }.revocation_basepoint = val.into_rust();
877 }
878 /// A payment key to sender for transactions broadcast by counterparty
879 #[no_mangle]
880 pub extern "C" fn AcceptChannel_get_payment_point(this_ptr: &AcceptChannel) -> crate::c_types::PublicKey {
881         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.payment_point;
882         crate::c_types::PublicKey::from_rust(&inner_val)
883 }
884 /// A payment key to sender for transactions broadcast by counterparty
885 #[no_mangle]
886 pub extern "C" fn AcceptChannel_set_payment_point(this_ptr: &mut AcceptChannel, mut val: crate::c_types::PublicKey) {
887         unsafe { &mut *this_ptr.inner }.payment_point = val.into_rust();
888 }
889 /// Used to derive a payment key to sender for transactions broadcast by sender
890 #[no_mangle]
891 pub extern "C" fn AcceptChannel_get_delayed_payment_basepoint(this_ptr: &AcceptChannel) -> crate::c_types::PublicKey {
892         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.delayed_payment_basepoint;
893         crate::c_types::PublicKey::from_rust(&inner_val)
894 }
895 /// Used to derive a payment key to sender for transactions broadcast by sender
896 #[no_mangle]
897 pub extern "C" fn AcceptChannel_set_delayed_payment_basepoint(this_ptr: &mut AcceptChannel, mut val: crate::c_types::PublicKey) {
898         unsafe { &mut *this_ptr.inner }.delayed_payment_basepoint = val.into_rust();
899 }
900 /// Used to derive an HTLC payment key to sender for transactions broadcast by counterparty
901 #[no_mangle]
902 pub extern "C" fn AcceptChannel_get_htlc_basepoint(this_ptr: &AcceptChannel) -> crate::c_types::PublicKey {
903         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_basepoint;
904         crate::c_types::PublicKey::from_rust(&inner_val)
905 }
906 /// Used to derive an HTLC payment key to sender for transactions broadcast by counterparty
907 #[no_mangle]
908 pub extern "C" fn AcceptChannel_set_htlc_basepoint(this_ptr: &mut AcceptChannel, mut val: crate::c_types::PublicKey) {
909         unsafe { &mut *this_ptr.inner }.htlc_basepoint = val.into_rust();
910 }
911 /// The first to-be-broadcast-by-sender transaction's per commitment point
912 #[no_mangle]
913 pub extern "C" fn AcceptChannel_get_first_per_commitment_point(this_ptr: &AcceptChannel) -> crate::c_types::PublicKey {
914         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.first_per_commitment_point;
915         crate::c_types::PublicKey::from_rust(&inner_val)
916 }
917 /// The first to-be-broadcast-by-sender transaction's per commitment point
918 #[no_mangle]
919 pub extern "C" fn AcceptChannel_set_first_per_commitment_point(this_ptr: &mut AcceptChannel, mut val: crate::c_types::PublicKey) {
920         unsafe { &mut *this_ptr.inner }.first_per_commitment_point = val.into_rust();
921 }
922 impl Clone for AcceptChannel {
923         fn clone(&self) -> Self {
924                 Self {
925                         inner: if <*mut nativeAcceptChannel>::is_null(self.inner) { std::ptr::null_mut() } else {
926                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
927                         is_owned: true,
928                 }
929         }
930 }
931 #[allow(unused)]
932 /// Used only if an object of this type is returned as a trait impl by a method
933 pub(crate) extern "C" fn AcceptChannel_clone_void(this_ptr: *const c_void) -> *mut c_void {
934         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeAcceptChannel)).clone() })) as *mut c_void
935 }
936 #[no_mangle]
937 /// Creates a copy of the AcceptChannel
938 pub extern "C" fn AcceptChannel_clone(orig: &AcceptChannel) -> AcceptChannel {
939         orig.clone()
940 }
941
942 use lightning::ln::msgs::FundingCreated as nativeFundingCreatedImport;
943 type nativeFundingCreated = nativeFundingCreatedImport;
944
945 /// A funding_created message to be sent or received from a peer
946 #[must_use]
947 #[repr(C)]
948 pub struct FundingCreated {
949         /// A pointer to the opaque Rust object.
950
951         /// Nearly everywhere, inner must be non-null, however in places where
952         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
953         pub inner: *mut nativeFundingCreated,
954         /// Indicates that this is the only struct which contains the same pointer.
955
956         /// Rust functions which take ownership of an object provided via an argument require
957         /// this to be true and invalidate the object pointed to by inner.
958         pub is_owned: bool,
959 }
960
961 impl Drop for FundingCreated {
962         fn drop(&mut self) {
963                 if self.is_owned && !<*mut nativeFundingCreated>::is_null(self.inner) {
964                         let _ = unsafe { Box::from_raw(self.inner) };
965                 }
966         }
967 }
968 /// Frees any resources used by the FundingCreated, if is_owned is set and inner is non-NULL.
969 #[no_mangle]
970 pub extern "C" fn FundingCreated_free(this_obj: FundingCreated) { }
971 #[allow(unused)]
972 /// Used only if an object of this type is returned as a trait impl by a method
973 extern "C" fn FundingCreated_free_void(this_ptr: *mut c_void) {
974         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeFundingCreated); }
975 }
976 #[allow(unused)]
977 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
978 impl FundingCreated {
979         pub(crate) fn take_inner(mut self) -> *mut nativeFundingCreated {
980                 assert!(self.is_owned);
981                 let ret = self.inner;
982                 self.inner = std::ptr::null_mut();
983                 ret
984         }
985 }
986 /// A temporary channel ID, until the funding is established
987 #[no_mangle]
988 pub extern "C" fn FundingCreated_get_temporary_channel_id(this_ptr: &FundingCreated) -> *const [u8; 32] {
989         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.temporary_channel_id;
990         inner_val
991 }
992 /// A temporary channel ID, until the funding is established
993 #[no_mangle]
994 pub extern "C" fn FundingCreated_set_temporary_channel_id(this_ptr: &mut FundingCreated, mut val: crate::c_types::ThirtyTwoBytes) {
995         unsafe { &mut *this_ptr.inner }.temporary_channel_id = val.data;
996 }
997 /// The funding transaction ID
998 #[no_mangle]
999 pub extern "C" fn FundingCreated_get_funding_txid(this_ptr: &FundingCreated) -> *const [u8; 32] {
1000         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_txid;
1001         inner_val.as_inner()
1002 }
1003 /// The funding transaction ID
1004 #[no_mangle]
1005 pub extern "C" fn FundingCreated_set_funding_txid(this_ptr: &mut FundingCreated, mut val: crate::c_types::ThirtyTwoBytes) {
1006         unsafe { &mut *this_ptr.inner }.funding_txid = ::bitcoin::hash_types::Txid::from_slice(&val.data[..]).unwrap();
1007 }
1008 /// The specific output index funding this channel
1009 #[no_mangle]
1010 pub extern "C" fn FundingCreated_get_funding_output_index(this_ptr: &FundingCreated) -> u16 {
1011         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_output_index;
1012         *inner_val
1013 }
1014 /// The specific output index funding this channel
1015 #[no_mangle]
1016 pub extern "C" fn FundingCreated_set_funding_output_index(this_ptr: &mut FundingCreated, mut val: u16) {
1017         unsafe { &mut *this_ptr.inner }.funding_output_index = val;
1018 }
1019 /// The signature of the channel initiator (funder) on the funding transaction
1020 #[no_mangle]
1021 pub extern "C" fn FundingCreated_get_signature(this_ptr: &FundingCreated) -> crate::c_types::Signature {
1022         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.signature;
1023         crate::c_types::Signature::from_rust(&inner_val)
1024 }
1025 /// The signature of the channel initiator (funder) on the funding transaction
1026 #[no_mangle]
1027 pub extern "C" fn FundingCreated_set_signature(this_ptr: &mut FundingCreated, mut val: crate::c_types::Signature) {
1028         unsafe { &mut *this_ptr.inner }.signature = val.into_rust();
1029 }
1030 /// Constructs a new FundingCreated given each field
1031 #[must_use]
1032 #[no_mangle]
1033 pub extern "C" fn FundingCreated_new(mut temporary_channel_id_arg: crate::c_types::ThirtyTwoBytes, mut funding_txid_arg: crate::c_types::ThirtyTwoBytes, mut funding_output_index_arg: u16, mut signature_arg: crate::c_types::Signature) -> FundingCreated {
1034         FundingCreated { inner: Box::into_raw(Box::new(nativeFundingCreated {
1035                 temporary_channel_id: temporary_channel_id_arg.data,
1036                 funding_txid: ::bitcoin::hash_types::Txid::from_slice(&funding_txid_arg.data[..]).unwrap(),
1037                 funding_output_index: funding_output_index_arg,
1038                 signature: signature_arg.into_rust(),
1039         })), is_owned: true }
1040 }
1041 impl Clone for FundingCreated {
1042         fn clone(&self) -> Self {
1043                 Self {
1044                         inner: if <*mut nativeFundingCreated>::is_null(self.inner) { std::ptr::null_mut() } else {
1045                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1046                         is_owned: true,
1047                 }
1048         }
1049 }
1050 #[allow(unused)]
1051 /// Used only if an object of this type is returned as a trait impl by a method
1052 pub(crate) extern "C" fn FundingCreated_clone_void(this_ptr: *const c_void) -> *mut c_void {
1053         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeFundingCreated)).clone() })) as *mut c_void
1054 }
1055 #[no_mangle]
1056 /// Creates a copy of the FundingCreated
1057 pub extern "C" fn FundingCreated_clone(orig: &FundingCreated) -> FundingCreated {
1058         orig.clone()
1059 }
1060
1061 use lightning::ln::msgs::FundingSigned as nativeFundingSignedImport;
1062 type nativeFundingSigned = nativeFundingSignedImport;
1063
1064 /// A funding_signed message to be sent or received from a peer
1065 #[must_use]
1066 #[repr(C)]
1067 pub struct FundingSigned {
1068         /// A pointer to the opaque Rust object.
1069
1070         /// Nearly everywhere, inner must be non-null, however in places where
1071         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1072         pub inner: *mut nativeFundingSigned,
1073         /// Indicates that this is the only struct which contains the same pointer.
1074
1075         /// Rust functions which take ownership of an object provided via an argument require
1076         /// this to be true and invalidate the object pointed to by inner.
1077         pub is_owned: bool,
1078 }
1079
1080 impl Drop for FundingSigned {
1081         fn drop(&mut self) {
1082                 if self.is_owned && !<*mut nativeFundingSigned>::is_null(self.inner) {
1083                         let _ = unsafe { Box::from_raw(self.inner) };
1084                 }
1085         }
1086 }
1087 /// Frees any resources used by the FundingSigned, if is_owned is set and inner is non-NULL.
1088 #[no_mangle]
1089 pub extern "C" fn FundingSigned_free(this_obj: FundingSigned) { }
1090 #[allow(unused)]
1091 /// Used only if an object of this type is returned as a trait impl by a method
1092 extern "C" fn FundingSigned_free_void(this_ptr: *mut c_void) {
1093         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeFundingSigned); }
1094 }
1095 #[allow(unused)]
1096 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1097 impl FundingSigned {
1098         pub(crate) fn take_inner(mut self) -> *mut nativeFundingSigned {
1099                 assert!(self.is_owned);
1100                 let ret = self.inner;
1101                 self.inner = std::ptr::null_mut();
1102                 ret
1103         }
1104 }
1105 /// The channel ID
1106 #[no_mangle]
1107 pub extern "C" fn FundingSigned_get_channel_id(this_ptr: &FundingSigned) -> *const [u8; 32] {
1108         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1109         inner_val
1110 }
1111 /// The channel ID
1112 #[no_mangle]
1113 pub extern "C" fn FundingSigned_set_channel_id(this_ptr: &mut FundingSigned, mut val: crate::c_types::ThirtyTwoBytes) {
1114         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1115 }
1116 /// The signature of the channel acceptor (fundee) on the funding transaction
1117 #[no_mangle]
1118 pub extern "C" fn FundingSigned_get_signature(this_ptr: &FundingSigned) -> crate::c_types::Signature {
1119         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.signature;
1120         crate::c_types::Signature::from_rust(&inner_val)
1121 }
1122 /// The signature of the channel acceptor (fundee) on the funding transaction
1123 #[no_mangle]
1124 pub extern "C" fn FundingSigned_set_signature(this_ptr: &mut FundingSigned, mut val: crate::c_types::Signature) {
1125         unsafe { &mut *this_ptr.inner }.signature = val.into_rust();
1126 }
1127 /// Constructs a new FundingSigned given each field
1128 #[must_use]
1129 #[no_mangle]
1130 pub extern "C" fn FundingSigned_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut signature_arg: crate::c_types::Signature) -> FundingSigned {
1131         FundingSigned { inner: Box::into_raw(Box::new(nativeFundingSigned {
1132                 channel_id: channel_id_arg.data,
1133                 signature: signature_arg.into_rust(),
1134         })), is_owned: true }
1135 }
1136 impl Clone for FundingSigned {
1137         fn clone(&self) -> Self {
1138                 Self {
1139                         inner: if <*mut nativeFundingSigned>::is_null(self.inner) { std::ptr::null_mut() } else {
1140                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1141                         is_owned: true,
1142                 }
1143         }
1144 }
1145 #[allow(unused)]
1146 /// Used only if an object of this type is returned as a trait impl by a method
1147 pub(crate) extern "C" fn FundingSigned_clone_void(this_ptr: *const c_void) -> *mut c_void {
1148         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeFundingSigned)).clone() })) as *mut c_void
1149 }
1150 #[no_mangle]
1151 /// Creates a copy of the FundingSigned
1152 pub extern "C" fn FundingSigned_clone(orig: &FundingSigned) -> FundingSigned {
1153         orig.clone()
1154 }
1155
1156 use lightning::ln::msgs::FundingLocked as nativeFundingLockedImport;
1157 type nativeFundingLocked = nativeFundingLockedImport;
1158
1159 /// A funding_locked message to be sent or received from a peer
1160 #[must_use]
1161 #[repr(C)]
1162 pub struct FundingLocked {
1163         /// A pointer to the opaque Rust object.
1164
1165         /// Nearly everywhere, inner must be non-null, however in places where
1166         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1167         pub inner: *mut nativeFundingLocked,
1168         /// Indicates that this is the only struct which contains the same pointer.
1169
1170         /// Rust functions which take ownership of an object provided via an argument require
1171         /// this to be true and invalidate the object pointed to by inner.
1172         pub is_owned: bool,
1173 }
1174
1175 impl Drop for FundingLocked {
1176         fn drop(&mut self) {
1177                 if self.is_owned && !<*mut nativeFundingLocked>::is_null(self.inner) {
1178                         let _ = unsafe { Box::from_raw(self.inner) };
1179                 }
1180         }
1181 }
1182 /// Frees any resources used by the FundingLocked, if is_owned is set and inner is non-NULL.
1183 #[no_mangle]
1184 pub extern "C" fn FundingLocked_free(this_obj: FundingLocked) { }
1185 #[allow(unused)]
1186 /// Used only if an object of this type is returned as a trait impl by a method
1187 extern "C" fn FundingLocked_free_void(this_ptr: *mut c_void) {
1188         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeFundingLocked); }
1189 }
1190 #[allow(unused)]
1191 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1192 impl FundingLocked {
1193         pub(crate) fn take_inner(mut self) -> *mut nativeFundingLocked {
1194                 assert!(self.is_owned);
1195                 let ret = self.inner;
1196                 self.inner = std::ptr::null_mut();
1197                 ret
1198         }
1199 }
1200 /// The channel ID
1201 #[no_mangle]
1202 pub extern "C" fn FundingLocked_get_channel_id(this_ptr: &FundingLocked) -> *const [u8; 32] {
1203         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1204         inner_val
1205 }
1206 /// The channel ID
1207 #[no_mangle]
1208 pub extern "C" fn FundingLocked_set_channel_id(this_ptr: &mut FundingLocked, mut val: crate::c_types::ThirtyTwoBytes) {
1209         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1210 }
1211 /// The per-commitment point of the second commitment transaction
1212 #[no_mangle]
1213 pub extern "C" fn FundingLocked_get_next_per_commitment_point(this_ptr: &FundingLocked) -> crate::c_types::PublicKey {
1214         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.next_per_commitment_point;
1215         crate::c_types::PublicKey::from_rust(&inner_val)
1216 }
1217 /// The per-commitment point of the second commitment transaction
1218 #[no_mangle]
1219 pub extern "C" fn FundingLocked_set_next_per_commitment_point(this_ptr: &mut FundingLocked, mut val: crate::c_types::PublicKey) {
1220         unsafe { &mut *this_ptr.inner }.next_per_commitment_point = val.into_rust();
1221 }
1222 /// Constructs a new FundingLocked given each field
1223 #[must_use]
1224 #[no_mangle]
1225 pub extern "C" fn FundingLocked_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut next_per_commitment_point_arg: crate::c_types::PublicKey) -> FundingLocked {
1226         FundingLocked { inner: Box::into_raw(Box::new(nativeFundingLocked {
1227                 channel_id: channel_id_arg.data,
1228                 next_per_commitment_point: next_per_commitment_point_arg.into_rust(),
1229         })), is_owned: true }
1230 }
1231 impl Clone for FundingLocked {
1232         fn clone(&self) -> Self {
1233                 Self {
1234                         inner: if <*mut nativeFundingLocked>::is_null(self.inner) { std::ptr::null_mut() } else {
1235                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1236                         is_owned: true,
1237                 }
1238         }
1239 }
1240 #[allow(unused)]
1241 /// Used only if an object of this type is returned as a trait impl by a method
1242 pub(crate) extern "C" fn FundingLocked_clone_void(this_ptr: *const c_void) -> *mut c_void {
1243         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeFundingLocked)).clone() })) as *mut c_void
1244 }
1245 #[no_mangle]
1246 /// Creates a copy of the FundingLocked
1247 pub extern "C" fn FundingLocked_clone(orig: &FundingLocked) -> FundingLocked {
1248         orig.clone()
1249 }
1250
1251 use lightning::ln::msgs::Shutdown as nativeShutdownImport;
1252 type nativeShutdown = nativeShutdownImport;
1253
1254 /// A shutdown message to be sent or received from a peer
1255 #[must_use]
1256 #[repr(C)]
1257 pub struct Shutdown {
1258         /// A pointer to the opaque Rust object.
1259
1260         /// Nearly everywhere, inner must be non-null, however in places where
1261         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1262         pub inner: *mut nativeShutdown,
1263         /// Indicates that this is the only struct which contains the same pointer.
1264
1265         /// Rust functions which take ownership of an object provided via an argument require
1266         /// this to be true and invalidate the object pointed to by inner.
1267         pub is_owned: bool,
1268 }
1269
1270 impl Drop for Shutdown {
1271         fn drop(&mut self) {
1272                 if self.is_owned && !<*mut nativeShutdown>::is_null(self.inner) {
1273                         let _ = unsafe { Box::from_raw(self.inner) };
1274                 }
1275         }
1276 }
1277 /// Frees any resources used by the Shutdown, if is_owned is set and inner is non-NULL.
1278 #[no_mangle]
1279 pub extern "C" fn Shutdown_free(this_obj: Shutdown) { }
1280 #[allow(unused)]
1281 /// Used only if an object of this type is returned as a trait impl by a method
1282 extern "C" fn Shutdown_free_void(this_ptr: *mut c_void) {
1283         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeShutdown); }
1284 }
1285 #[allow(unused)]
1286 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1287 impl Shutdown {
1288         pub(crate) fn take_inner(mut self) -> *mut nativeShutdown {
1289                 assert!(self.is_owned);
1290                 let ret = self.inner;
1291                 self.inner = std::ptr::null_mut();
1292                 ret
1293         }
1294 }
1295 /// The channel ID
1296 #[no_mangle]
1297 pub extern "C" fn Shutdown_get_channel_id(this_ptr: &Shutdown) -> *const [u8; 32] {
1298         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1299         inner_val
1300 }
1301 /// The channel ID
1302 #[no_mangle]
1303 pub extern "C" fn Shutdown_set_channel_id(this_ptr: &mut Shutdown, mut val: crate::c_types::ThirtyTwoBytes) {
1304         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1305 }
1306 /// The destination of this peer's funds on closing.
1307 /// Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
1308 #[no_mangle]
1309 pub extern "C" fn Shutdown_get_scriptpubkey(this_ptr: &Shutdown) -> crate::c_types::u8slice {
1310         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.scriptpubkey;
1311         crate::c_types::u8slice::from_slice(&inner_val[..])
1312 }
1313 /// The destination of this peer's funds on closing.
1314 /// Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
1315 #[no_mangle]
1316 pub extern "C" fn Shutdown_set_scriptpubkey(this_ptr: &mut Shutdown, mut val: crate::c_types::derived::CVec_u8Z) {
1317         unsafe { &mut *this_ptr.inner }.scriptpubkey = ::bitcoin::blockdata::script::Script::from(val.into_rust());
1318 }
1319 /// Constructs a new Shutdown given each field
1320 #[must_use]
1321 #[no_mangle]
1322 pub extern "C" fn Shutdown_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut scriptpubkey_arg: crate::c_types::derived::CVec_u8Z) -> Shutdown {
1323         Shutdown { inner: Box::into_raw(Box::new(nativeShutdown {
1324                 channel_id: channel_id_arg.data,
1325                 scriptpubkey: ::bitcoin::blockdata::script::Script::from(scriptpubkey_arg.into_rust()),
1326         })), is_owned: true }
1327 }
1328 impl Clone for Shutdown {
1329         fn clone(&self) -> Self {
1330                 Self {
1331                         inner: if <*mut nativeShutdown>::is_null(self.inner) { std::ptr::null_mut() } else {
1332                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1333                         is_owned: true,
1334                 }
1335         }
1336 }
1337 #[allow(unused)]
1338 /// Used only if an object of this type is returned as a trait impl by a method
1339 pub(crate) extern "C" fn Shutdown_clone_void(this_ptr: *const c_void) -> *mut c_void {
1340         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeShutdown)).clone() })) as *mut c_void
1341 }
1342 #[no_mangle]
1343 /// Creates a copy of the Shutdown
1344 pub extern "C" fn Shutdown_clone(orig: &Shutdown) -> Shutdown {
1345         orig.clone()
1346 }
1347
1348 use lightning::ln::msgs::ClosingSigned as nativeClosingSignedImport;
1349 type nativeClosingSigned = nativeClosingSignedImport;
1350
1351 /// A closing_signed message to be sent or received from a peer
1352 #[must_use]
1353 #[repr(C)]
1354 pub struct ClosingSigned {
1355         /// A pointer to the opaque Rust object.
1356
1357         /// Nearly everywhere, inner must be non-null, however in places where
1358         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1359         pub inner: *mut nativeClosingSigned,
1360         /// Indicates that this is the only struct which contains the same pointer.
1361
1362         /// Rust functions which take ownership of an object provided via an argument require
1363         /// this to be true and invalidate the object pointed to by inner.
1364         pub is_owned: bool,
1365 }
1366
1367 impl Drop for ClosingSigned {
1368         fn drop(&mut self) {
1369                 if self.is_owned && !<*mut nativeClosingSigned>::is_null(self.inner) {
1370                         let _ = unsafe { Box::from_raw(self.inner) };
1371                 }
1372         }
1373 }
1374 /// Frees any resources used by the ClosingSigned, if is_owned is set and inner is non-NULL.
1375 #[no_mangle]
1376 pub extern "C" fn ClosingSigned_free(this_obj: ClosingSigned) { }
1377 #[allow(unused)]
1378 /// Used only if an object of this type is returned as a trait impl by a method
1379 extern "C" fn ClosingSigned_free_void(this_ptr: *mut c_void) {
1380         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeClosingSigned); }
1381 }
1382 #[allow(unused)]
1383 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1384 impl ClosingSigned {
1385         pub(crate) fn take_inner(mut self) -> *mut nativeClosingSigned {
1386                 assert!(self.is_owned);
1387                 let ret = self.inner;
1388                 self.inner = std::ptr::null_mut();
1389                 ret
1390         }
1391 }
1392 /// The channel ID
1393 #[no_mangle]
1394 pub extern "C" fn ClosingSigned_get_channel_id(this_ptr: &ClosingSigned) -> *const [u8; 32] {
1395         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1396         inner_val
1397 }
1398 /// The channel ID
1399 #[no_mangle]
1400 pub extern "C" fn ClosingSigned_set_channel_id(this_ptr: &mut ClosingSigned, mut val: crate::c_types::ThirtyTwoBytes) {
1401         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1402 }
1403 /// The proposed total fee for the closing transaction
1404 #[no_mangle]
1405 pub extern "C" fn ClosingSigned_get_fee_satoshis(this_ptr: &ClosingSigned) -> u64 {
1406         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_satoshis;
1407         *inner_val
1408 }
1409 /// The proposed total fee for the closing transaction
1410 #[no_mangle]
1411 pub extern "C" fn ClosingSigned_set_fee_satoshis(this_ptr: &mut ClosingSigned, mut val: u64) {
1412         unsafe { &mut *this_ptr.inner }.fee_satoshis = val;
1413 }
1414 /// A signature on the closing transaction
1415 #[no_mangle]
1416 pub extern "C" fn ClosingSigned_get_signature(this_ptr: &ClosingSigned) -> crate::c_types::Signature {
1417         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.signature;
1418         crate::c_types::Signature::from_rust(&inner_val)
1419 }
1420 /// A signature on the closing transaction
1421 #[no_mangle]
1422 pub extern "C" fn ClosingSigned_set_signature(this_ptr: &mut ClosingSigned, mut val: crate::c_types::Signature) {
1423         unsafe { &mut *this_ptr.inner }.signature = val.into_rust();
1424 }
1425 /// Constructs a new ClosingSigned given each field
1426 #[must_use]
1427 #[no_mangle]
1428 pub extern "C" fn ClosingSigned_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut fee_satoshis_arg: u64, mut signature_arg: crate::c_types::Signature) -> ClosingSigned {
1429         ClosingSigned { inner: Box::into_raw(Box::new(nativeClosingSigned {
1430                 channel_id: channel_id_arg.data,
1431                 fee_satoshis: fee_satoshis_arg,
1432                 signature: signature_arg.into_rust(),
1433         })), is_owned: true }
1434 }
1435 impl Clone for ClosingSigned {
1436         fn clone(&self) -> Self {
1437                 Self {
1438                         inner: if <*mut nativeClosingSigned>::is_null(self.inner) { std::ptr::null_mut() } else {
1439                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1440                         is_owned: true,
1441                 }
1442         }
1443 }
1444 #[allow(unused)]
1445 /// Used only if an object of this type is returned as a trait impl by a method
1446 pub(crate) extern "C" fn ClosingSigned_clone_void(this_ptr: *const c_void) -> *mut c_void {
1447         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeClosingSigned)).clone() })) as *mut c_void
1448 }
1449 #[no_mangle]
1450 /// Creates a copy of the ClosingSigned
1451 pub extern "C" fn ClosingSigned_clone(orig: &ClosingSigned) -> ClosingSigned {
1452         orig.clone()
1453 }
1454
1455 use lightning::ln::msgs::UpdateAddHTLC as nativeUpdateAddHTLCImport;
1456 type nativeUpdateAddHTLC = nativeUpdateAddHTLCImport;
1457
1458 /// An update_add_htlc message to be sent or received from a peer
1459 #[must_use]
1460 #[repr(C)]
1461 pub struct UpdateAddHTLC {
1462         /// A pointer to the opaque Rust object.
1463
1464         /// Nearly everywhere, inner must be non-null, however in places where
1465         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1466         pub inner: *mut nativeUpdateAddHTLC,
1467         /// Indicates that this is the only struct which contains the same pointer.
1468
1469         /// Rust functions which take ownership of an object provided via an argument require
1470         /// this to be true and invalidate the object pointed to by inner.
1471         pub is_owned: bool,
1472 }
1473
1474 impl Drop for UpdateAddHTLC {
1475         fn drop(&mut self) {
1476                 if self.is_owned && !<*mut nativeUpdateAddHTLC>::is_null(self.inner) {
1477                         let _ = unsafe { Box::from_raw(self.inner) };
1478                 }
1479         }
1480 }
1481 /// Frees any resources used by the UpdateAddHTLC, if is_owned is set and inner is non-NULL.
1482 #[no_mangle]
1483 pub extern "C" fn UpdateAddHTLC_free(this_obj: UpdateAddHTLC) { }
1484 #[allow(unused)]
1485 /// Used only if an object of this type is returned as a trait impl by a method
1486 extern "C" fn UpdateAddHTLC_free_void(this_ptr: *mut c_void) {
1487         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeUpdateAddHTLC); }
1488 }
1489 #[allow(unused)]
1490 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1491 impl UpdateAddHTLC {
1492         pub(crate) fn take_inner(mut self) -> *mut nativeUpdateAddHTLC {
1493                 assert!(self.is_owned);
1494                 let ret = self.inner;
1495                 self.inner = std::ptr::null_mut();
1496                 ret
1497         }
1498 }
1499 /// The channel ID
1500 #[no_mangle]
1501 pub extern "C" fn UpdateAddHTLC_get_channel_id(this_ptr: &UpdateAddHTLC) -> *const [u8; 32] {
1502         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1503         inner_val
1504 }
1505 /// The channel ID
1506 #[no_mangle]
1507 pub extern "C" fn UpdateAddHTLC_set_channel_id(this_ptr: &mut UpdateAddHTLC, mut val: crate::c_types::ThirtyTwoBytes) {
1508         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1509 }
1510 /// The HTLC ID
1511 #[no_mangle]
1512 pub extern "C" fn UpdateAddHTLC_get_htlc_id(this_ptr: &UpdateAddHTLC) -> u64 {
1513         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_id;
1514         *inner_val
1515 }
1516 /// The HTLC ID
1517 #[no_mangle]
1518 pub extern "C" fn UpdateAddHTLC_set_htlc_id(this_ptr: &mut UpdateAddHTLC, mut val: u64) {
1519         unsafe { &mut *this_ptr.inner }.htlc_id = val;
1520 }
1521 /// The HTLC value in milli-satoshi
1522 #[no_mangle]
1523 pub extern "C" fn UpdateAddHTLC_get_amount_msat(this_ptr: &UpdateAddHTLC) -> u64 {
1524         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.amount_msat;
1525         *inner_val
1526 }
1527 /// The HTLC value in milli-satoshi
1528 #[no_mangle]
1529 pub extern "C" fn UpdateAddHTLC_set_amount_msat(this_ptr: &mut UpdateAddHTLC, mut val: u64) {
1530         unsafe { &mut *this_ptr.inner }.amount_msat = val;
1531 }
1532 /// The payment hash, the pre-image of which controls HTLC redemption
1533 #[no_mangle]
1534 pub extern "C" fn UpdateAddHTLC_get_payment_hash(this_ptr: &UpdateAddHTLC) -> *const [u8; 32] {
1535         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.payment_hash;
1536         &inner_val.0
1537 }
1538 /// The payment hash, the pre-image of which controls HTLC redemption
1539 #[no_mangle]
1540 pub extern "C" fn UpdateAddHTLC_set_payment_hash(this_ptr: &mut UpdateAddHTLC, mut val: crate::c_types::ThirtyTwoBytes) {
1541         unsafe { &mut *this_ptr.inner }.payment_hash = ::lightning::ln::channelmanager::PaymentHash(val.data);
1542 }
1543 /// The expiry height of the HTLC
1544 #[no_mangle]
1545 pub extern "C" fn UpdateAddHTLC_get_cltv_expiry(this_ptr: &UpdateAddHTLC) -> u32 {
1546         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.cltv_expiry;
1547         *inner_val
1548 }
1549 /// The expiry height of the HTLC
1550 #[no_mangle]
1551 pub extern "C" fn UpdateAddHTLC_set_cltv_expiry(this_ptr: &mut UpdateAddHTLC, mut val: u32) {
1552         unsafe { &mut *this_ptr.inner }.cltv_expiry = val;
1553 }
1554 impl Clone for UpdateAddHTLC {
1555         fn clone(&self) -> Self {
1556                 Self {
1557                         inner: if <*mut nativeUpdateAddHTLC>::is_null(self.inner) { std::ptr::null_mut() } else {
1558                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1559                         is_owned: true,
1560                 }
1561         }
1562 }
1563 #[allow(unused)]
1564 /// Used only if an object of this type is returned as a trait impl by a method
1565 pub(crate) extern "C" fn UpdateAddHTLC_clone_void(this_ptr: *const c_void) -> *mut c_void {
1566         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeUpdateAddHTLC)).clone() })) as *mut c_void
1567 }
1568 #[no_mangle]
1569 /// Creates a copy of the UpdateAddHTLC
1570 pub extern "C" fn UpdateAddHTLC_clone(orig: &UpdateAddHTLC) -> UpdateAddHTLC {
1571         orig.clone()
1572 }
1573
1574 use lightning::ln::msgs::UpdateFulfillHTLC as nativeUpdateFulfillHTLCImport;
1575 type nativeUpdateFulfillHTLC = nativeUpdateFulfillHTLCImport;
1576
1577 /// An update_fulfill_htlc message to be sent or received from a peer
1578 #[must_use]
1579 #[repr(C)]
1580 pub struct UpdateFulfillHTLC {
1581         /// A pointer to the opaque Rust object.
1582
1583         /// Nearly everywhere, inner must be non-null, however in places where
1584         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1585         pub inner: *mut nativeUpdateFulfillHTLC,
1586         /// Indicates that this is the only struct which contains the same pointer.
1587
1588         /// Rust functions which take ownership of an object provided via an argument require
1589         /// this to be true and invalidate the object pointed to by inner.
1590         pub is_owned: bool,
1591 }
1592
1593 impl Drop for UpdateFulfillHTLC {
1594         fn drop(&mut self) {
1595                 if self.is_owned && !<*mut nativeUpdateFulfillHTLC>::is_null(self.inner) {
1596                         let _ = unsafe { Box::from_raw(self.inner) };
1597                 }
1598         }
1599 }
1600 /// Frees any resources used by the UpdateFulfillHTLC, if is_owned is set and inner is non-NULL.
1601 #[no_mangle]
1602 pub extern "C" fn UpdateFulfillHTLC_free(this_obj: UpdateFulfillHTLC) { }
1603 #[allow(unused)]
1604 /// Used only if an object of this type is returned as a trait impl by a method
1605 extern "C" fn UpdateFulfillHTLC_free_void(this_ptr: *mut c_void) {
1606         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeUpdateFulfillHTLC); }
1607 }
1608 #[allow(unused)]
1609 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1610 impl UpdateFulfillHTLC {
1611         pub(crate) fn take_inner(mut self) -> *mut nativeUpdateFulfillHTLC {
1612                 assert!(self.is_owned);
1613                 let ret = self.inner;
1614                 self.inner = std::ptr::null_mut();
1615                 ret
1616         }
1617 }
1618 /// The channel ID
1619 #[no_mangle]
1620 pub extern "C" fn UpdateFulfillHTLC_get_channel_id(this_ptr: &UpdateFulfillHTLC) -> *const [u8; 32] {
1621         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1622         inner_val
1623 }
1624 /// The channel ID
1625 #[no_mangle]
1626 pub extern "C" fn UpdateFulfillHTLC_set_channel_id(this_ptr: &mut UpdateFulfillHTLC, mut val: crate::c_types::ThirtyTwoBytes) {
1627         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1628 }
1629 /// The HTLC ID
1630 #[no_mangle]
1631 pub extern "C" fn UpdateFulfillHTLC_get_htlc_id(this_ptr: &UpdateFulfillHTLC) -> u64 {
1632         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_id;
1633         *inner_val
1634 }
1635 /// The HTLC ID
1636 #[no_mangle]
1637 pub extern "C" fn UpdateFulfillHTLC_set_htlc_id(this_ptr: &mut UpdateFulfillHTLC, mut val: u64) {
1638         unsafe { &mut *this_ptr.inner }.htlc_id = val;
1639 }
1640 /// The pre-image of the payment hash, allowing HTLC redemption
1641 #[no_mangle]
1642 pub extern "C" fn UpdateFulfillHTLC_get_payment_preimage(this_ptr: &UpdateFulfillHTLC) -> *const [u8; 32] {
1643         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.payment_preimage;
1644         &inner_val.0
1645 }
1646 /// The pre-image of the payment hash, allowing HTLC redemption
1647 #[no_mangle]
1648 pub extern "C" fn UpdateFulfillHTLC_set_payment_preimage(this_ptr: &mut UpdateFulfillHTLC, mut val: crate::c_types::ThirtyTwoBytes) {
1649         unsafe { &mut *this_ptr.inner }.payment_preimage = ::lightning::ln::channelmanager::PaymentPreimage(val.data);
1650 }
1651 /// Constructs a new UpdateFulfillHTLC given each field
1652 #[must_use]
1653 #[no_mangle]
1654 pub extern "C" fn UpdateFulfillHTLC_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut htlc_id_arg: u64, mut payment_preimage_arg: crate::c_types::ThirtyTwoBytes) -> UpdateFulfillHTLC {
1655         UpdateFulfillHTLC { inner: Box::into_raw(Box::new(nativeUpdateFulfillHTLC {
1656                 channel_id: channel_id_arg.data,
1657                 htlc_id: htlc_id_arg,
1658                 payment_preimage: ::lightning::ln::channelmanager::PaymentPreimage(payment_preimage_arg.data),
1659         })), is_owned: true }
1660 }
1661 impl Clone for UpdateFulfillHTLC {
1662         fn clone(&self) -> Self {
1663                 Self {
1664                         inner: if <*mut nativeUpdateFulfillHTLC>::is_null(self.inner) { std::ptr::null_mut() } else {
1665                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1666                         is_owned: true,
1667                 }
1668         }
1669 }
1670 #[allow(unused)]
1671 /// Used only if an object of this type is returned as a trait impl by a method
1672 pub(crate) extern "C" fn UpdateFulfillHTLC_clone_void(this_ptr: *const c_void) -> *mut c_void {
1673         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeUpdateFulfillHTLC)).clone() })) as *mut c_void
1674 }
1675 #[no_mangle]
1676 /// Creates a copy of the UpdateFulfillHTLC
1677 pub extern "C" fn UpdateFulfillHTLC_clone(orig: &UpdateFulfillHTLC) -> UpdateFulfillHTLC {
1678         orig.clone()
1679 }
1680
1681 use lightning::ln::msgs::UpdateFailHTLC as nativeUpdateFailHTLCImport;
1682 type nativeUpdateFailHTLC = nativeUpdateFailHTLCImport;
1683
1684 /// An update_fail_htlc message to be sent or received from a peer
1685 #[must_use]
1686 #[repr(C)]
1687 pub struct UpdateFailHTLC {
1688         /// A pointer to the opaque Rust object.
1689
1690         /// Nearly everywhere, inner must be non-null, however in places where
1691         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1692         pub inner: *mut nativeUpdateFailHTLC,
1693         /// Indicates that this is the only struct which contains the same pointer.
1694
1695         /// Rust functions which take ownership of an object provided via an argument require
1696         /// this to be true and invalidate the object pointed to by inner.
1697         pub is_owned: bool,
1698 }
1699
1700 impl Drop for UpdateFailHTLC {
1701         fn drop(&mut self) {
1702                 if self.is_owned && !<*mut nativeUpdateFailHTLC>::is_null(self.inner) {
1703                         let _ = unsafe { Box::from_raw(self.inner) };
1704                 }
1705         }
1706 }
1707 /// Frees any resources used by the UpdateFailHTLC, if is_owned is set and inner is non-NULL.
1708 #[no_mangle]
1709 pub extern "C" fn UpdateFailHTLC_free(this_obj: UpdateFailHTLC) { }
1710 #[allow(unused)]
1711 /// Used only if an object of this type is returned as a trait impl by a method
1712 extern "C" fn UpdateFailHTLC_free_void(this_ptr: *mut c_void) {
1713         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeUpdateFailHTLC); }
1714 }
1715 #[allow(unused)]
1716 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1717 impl UpdateFailHTLC {
1718         pub(crate) fn take_inner(mut self) -> *mut nativeUpdateFailHTLC {
1719                 assert!(self.is_owned);
1720                 let ret = self.inner;
1721                 self.inner = std::ptr::null_mut();
1722                 ret
1723         }
1724 }
1725 /// The channel ID
1726 #[no_mangle]
1727 pub extern "C" fn UpdateFailHTLC_get_channel_id(this_ptr: &UpdateFailHTLC) -> *const [u8; 32] {
1728         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1729         inner_val
1730 }
1731 /// The channel ID
1732 #[no_mangle]
1733 pub extern "C" fn UpdateFailHTLC_set_channel_id(this_ptr: &mut UpdateFailHTLC, mut val: crate::c_types::ThirtyTwoBytes) {
1734         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1735 }
1736 /// The HTLC ID
1737 #[no_mangle]
1738 pub extern "C" fn UpdateFailHTLC_get_htlc_id(this_ptr: &UpdateFailHTLC) -> u64 {
1739         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_id;
1740         *inner_val
1741 }
1742 /// The HTLC ID
1743 #[no_mangle]
1744 pub extern "C" fn UpdateFailHTLC_set_htlc_id(this_ptr: &mut UpdateFailHTLC, mut val: u64) {
1745         unsafe { &mut *this_ptr.inner }.htlc_id = val;
1746 }
1747 impl Clone for UpdateFailHTLC {
1748         fn clone(&self) -> Self {
1749                 Self {
1750                         inner: if <*mut nativeUpdateFailHTLC>::is_null(self.inner) { std::ptr::null_mut() } else {
1751                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1752                         is_owned: true,
1753                 }
1754         }
1755 }
1756 #[allow(unused)]
1757 /// Used only if an object of this type is returned as a trait impl by a method
1758 pub(crate) extern "C" fn UpdateFailHTLC_clone_void(this_ptr: *const c_void) -> *mut c_void {
1759         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeUpdateFailHTLC)).clone() })) as *mut c_void
1760 }
1761 #[no_mangle]
1762 /// Creates a copy of the UpdateFailHTLC
1763 pub extern "C" fn UpdateFailHTLC_clone(orig: &UpdateFailHTLC) -> UpdateFailHTLC {
1764         orig.clone()
1765 }
1766
1767 use lightning::ln::msgs::UpdateFailMalformedHTLC as nativeUpdateFailMalformedHTLCImport;
1768 type nativeUpdateFailMalformedHTLC = nativeUpdateFailMalformedHTLCImport;
1769
1770 /// An update_fail_malformed_htlc message to be sent or received from a peer
1771 #[must_use]
1772 #[repr(C)]
1773 pub struct UpdateFailMalformedHTLC {
1774         /// A pointer to the opaque Rust object.
1775
1776         /// Nearly everywhere, inner must be non-null, however in places where
1777         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1778         pub inner: *mut nativeUpdateFailMalformedHTLC,
1779         /// Indicates that this is the only struct which contains the same pointer.
1780
1781         /// Rust functions which take ownership of an object provided via an argument require
1782         /// this to be true and invalidate the object pointed to by inner.
1783         pub is_owned: bool,
1784 }
1785
1786 impl Drop for UpdateFailMalformedHTLC {
1787         fn drop(&mut self) {
1788                 if self.is_owned && !<*mut nativeUpdateFailMalformedHTLC>::is_null(self.inner) {
1789                         let _ = unsafe { Box::from_raw(self.inner) };
1790                 }
1791         }
1792 }
1793 /// Frees any resources used by the UpdateFailMalformedHTLC, if is_owned is set and inner is non-NULL.
1794 #[no_mangle]
1795 pub extern "C" fn UpdateFailMalformedHTLC_free(this_obj: UpdateFailMalformedHTLC) { }
1796 #[allow(unused)]
1797 /// Used only if an object of this type is returned as a trait impl by a method
1798 extern "C" fn UpdateFailMalformedHTLC_free_void(this_ptr: *mut c_void) {
1799         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeUpdateFailMalformedHTLC); }
1800 }
1801 #[allow(unused)]
1802 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1803 impl UpdateFailMalformedHTLC {
1804         pub(crate) fn take_inner(mut self) -> *mut nativeUpdateFailMalformedHTLC {
1805                 assert!(self.is_owned);
1806                 let ret = self.inner;
1807                 self.inner = std::ptr::null_mut();
1808                 ret
1809         }
1810 }
1811 /// The channel ID
1812 #[no_mangle]
1813 pub extern "C" fn UpdateFailMalformedHTLC_get_channel_id(this_ptr: &UpdateFailMalformedHTLC) -> *const [u8; 32] {
1814         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1815         inner_val
1816 }
1817 /// The channel ID
1818 #[no_mangle]
1819 pub extern "C" fn UpdateFailMalformedHTLC_set_channel_id(this_ptr: &mut UpdateFailMalformedHTLC, mut val: crate::c_types::ThirtyTwoBytes) {
1820         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1821 }
1822 /// The HTLC ID
1823 #[no_mangle]
1824 pub extern "C" fn UpdateFailMalformedHTLC_get_htlc_id(this_ptr: &UpdateFailMalformedHTLC) -> u64 {
1825         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_id;
1826         *inner_val
1827 }
1828 /// The HTLC ID
1829 #[no_mangle]
1830 pub extern "C" fn UpdateFailMalformedHTLC_set_htlc_id(this_ptr: &mut UpdateFailMalformedHTLC, mut val: u64) {
1831         unsafe { &mut *this_ptr.inner }.htlc_id = val;
1832 }
1833 /// The failure code
1834 #[no_mangle]
1835 pub extern "C" fn UpdateFailMalformedHTLC_get_failure_code(this_ptr: &UpdateFailMalformedHTLC) -> u16 {
1836         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.failure_code;
1837         *inner_val
1838 }
1839 /// The failure code
1840 #[no_mangle]
1841 pub extern "C" fn UpdateFailMalformedHTLC_set_failure_code(this_ptr: &mut UpdateFailMalformedHTLC, mut val: u16) {
1842         unsafe { &mut *this_ptr.inner }.failure_code = val;
1843 }
1844 impl Clone for UpdateFailMalformedHTLC {
1845         fn clone(&self) -> Self {
1846                 Self {
1847                         inner: if <*mut nativeUpdateFailMalformedHTLC>::is_null(self.inner) { std::ptr::null_mut() } else {
1848                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1849                         is_owned: true,
1850                 }
1851         }
1852 }
1853 #[allow(unused)]
1854 /// Used only if an object of this type is returned as a trait impl by a method
1855 pub(crate) extern "C" fn UpdateFailMalformedHTLC_clone_void(this_ptr: *const c_void) -> *mut c_void {
1856         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeUpdateFailMalformedHTLC)).clone() })) as *mut c_void
1857 }
1858 #[no_mangle]
1859 /// Creates a copy of the UpdateFailMalformedHTLC
1860 pub extern "C" fn UpdateFailMalformedHTLC_clone(orig: &UpdateFailMalformedHTLC) -> UpdateFailMalformedHTLC {
1861         orig.clone()
1862 }
1863
1864 use lightning::ln::msgs::CommitmentSigned as nativeCommitmentSignedImport;
1865 type nativeCommitmentSigned = nativeCommitmentSignedImport;
1866
1867 /// A commitment_signed message to be sent or received from a peer
1868 #[must_use]
1869 #[repr(C)]
1870 pub struct CommitmentSigned {
1871         /// A pointer to the opaque Rust object.
1872
1873         /// Nearly everywhere, inner must be non-null, however in places where
1874         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1875         pub inner: *mut nativeCommitmentSigned,
1876         /// Indicates that this is the only struct which contains the same pointer.
1877
1878         /// Rust functions which take ownership of an object provided via an argument require
1879         /// this to be true and invalidate the object pointed to by inner.
1880         pub is_owned: bool,
1881 }
1882
1883 impl Drop for CommitmentSigned {
1884         fn drop(&mut self) {
1885                 if self.is_owned && !<*mut nativeCommitmentSigned>::is_null(self.inner) {
1886                         let _ = unsafe { Box::from_raw(self.inner) };
1887                 }
1888         }
1889 }
1890 /// Frees any resources used by the CommitmentSigned, if is_owned is set and inner is non-NULL.
1891 #[no_mangle]
1892 pub extern "C" fn CommitmentSigned_free(this_obj: CommitmentSigned) { }
1893 #[allow(unused)]
1894 /// Used only if an object of this type is returned as a trait impl by a method
1895 extern "C" fn CommitmentSigned_free_void(this_ptr: *mut c_void) {
1896         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeCommitmentSigned); }
1897 }
1898 #[allow(unused)]
1899 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1900 impl CommitmentSigned {
1901         pub(crate) fn take_inner(mut self) -> *mut nativeCommitmentSigned {
1902                 assert!(self.is_owned);
1903                 let ret = self.inner;
1904                 self.inner = std::ptr::null_mut();
1905                 ret
1906         }
1907 }
1908 /// The channel ID
1909 #[no_mangle]
1910 pub extern "C" fn CommitmentSigned_get_channel_id(this_ptr: &CommitmentSigned) -> *const [u8; 32] {
1911         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
1912         inner_val
1913 }
1914 /// The channel ID
1915 #[no_mangle]
1916 pub extern "C" fn CommitmentSigned_set_channel_id(this_ptr: &mut CommitmentSigned, mut val: crate::c_types::ThirtyTwoBytes) {
1917         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
1918 }
1919 /// A signature on the commitment transaction
1920 #[no_mangle]
1921 pub extern "C" fn CommitmentSigned_get_signature(this_ptr: &CommitmentSigned) -> crate::c_types::Signature {
1922         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.signature;
1923         crate::c_types::Signature::from_rust(&inner_val)
1924 }
1925 /// A signature on the commitment transaction
1926 #[no_mangle]
1927 pub extern "C" fn CommitmentSigned_set_signature(this_ptr: &mut CommitmentSigned, mut val: crate::c_types::Signature) {
1928         unsafe { &mut *this_ptr.inner }.signature = val.into_rust();
1929 }
1930 /// Signatures on the HTLC transactions
1931 #[no_mangle]
1932 pub extern "C" fn CommitmentSigned_set_htlc_signatures(this_ptr: &mut CommitmentSigned, mut val: crate::c_types::derived::CVec_SignatureZ) {
1933         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item.into_rust() }); };
1934         unsafe { &mut *this_ptr.inner }.htlc_signatures = local_val;
1935 }
1936 /// Constructs a new CommitmentSigned given each field
1937 #[must_use]
1938 #[no_mangle]
1939 pub extern "C" fn CommitmentSigned_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut signature_arg: crate::c_types::Signature, mut htlc_signatures_arg: crate::c_types::derived::CVec_SignatureZ) -> CommitmentSigned {
1940         let mut local_htlc_signatures_arg = Vec::new(); for mut item in htlc_signatures_arg.into_rust().drain(..) { local_htlc_signatures_arg.push( { item.into_rust() }); };
1941         CommitmentSigned { inner: Box::into_raw(Box::new(nativeCommitmentSigned {
1942                 channel_id: channel_id_arg.data,
1943                 signature: signature_arg.into_rust(),
1944                 htlc_signatures: local_htlc_signatures_arg,
1945         })), is_owned: true }
1946 }
1947 impl Clone for CommitmentSigned {
1948         fn clone(&self) -> Self {
1949                 Self {
1950                         inner: if <*mut nativeCommitmentSigned>::is_null(self.inner) { std::ptr::null_mut() } else {
1951                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1952                         is_owned: true,
1953                 }
1954         }
1955 }
1956 #[allow(unused)]
1957 /// Used only if an object of this type is returned as a trait impl by a method
1958 pub(crate) extern "C" fn CommitmentSigned_clone_void(this_ptr: *const c_void) -> *mut c_void {
1959         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeCommitmentSigned)).clone() })) as *mut c_void
1960 }
1961 #[no_mangle]
1962 /// Creates a copy of the CommitmentSigned
1963 pub extern "C" fn CommitmentSigned_clone(orig: &CommitmentSigned) -> CommitmentSigned {
1964         orig.clone()
1965 }
1966
1967 use lightning::ln::msgs::RevokeAndACK as nativeRevokeAndACKImport;
1968 type nativeRevokeAndACK = nativeRevokeAndACKImport;
1969
1970 /// A revoke_and_ack message to be sent or received from a peer
1971 #[must_use]
1972 #[repr(C)]
1973 pub struct RevokeAndACK {
1974         /// A pointer to the opaque Rust object.
1975
1976         /// Nearly everywhere, inner must be non-null, however in places where
1977         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1978         pub inner: *mut nativeRevokeAndACK,
1979         /// Indicates that this is the only struct which contains the same pointer.
1980
1981         /// Rust functions which take ownership of an object provided via an argument require
1982         /// this to be true and invalidate the object pointed to by inner.
1983         pub is_owned: bool,
1984 }
1985
1986 impl Drop for RevokeAndACK {
1987         fn drop(&mut self) {
1988                 if self.is_owned && !<*mut nativeRevokeAndACK>::is_null(self.inner) {
1989                         let _ = unsafe { Box::from_raw(self.inner) };
1990                 }
1991         }
1992 }
1993 /// Frees any resources used by the RevokeAndACK, if is_owned is set and inner is non-NULL.
1994 #[no_mangle]
1995 pub extern "C" fn RevokeAndACK_free(this_obj: RevokeAndACK) { }
1996 #[allow(unused)]
1997 /// Used only if an object of this type is returned as a trait impl by a method
1998 extern "C" fn RevokeAndACK_free_void(this_ptr: *mut c_void) {
1999         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeRevokeAndACK); }
2000 }
2001 #[allow(unused)]
2002 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2003 impl RevokeAndACK {
2004         pub(crate) fn take_inner(mut self) -> *mut nativeRevokeAndACK {
2005                 assert!(self.is_owned);
2006                 let ret = self.inner;
2007                 self.inner = std::ptr::null_mut();
2008                 ret
2009         }
2010 }
2011 /// The channel ID
2012 #[no_mangle]
2013 pub extern "C" fn RevokeAndACK_get_channel_id(this_ptr: &RevokeAndACK) -> *const [u8; 32] {
2014         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
2015         inner_val
2016 }
2017 /// The channel ID
2018 #[no_mangle]
2019 pub extern "C" fn RevokeAndACK_set_channel_id(this_ptr: &mut RevokeAndACK, mut val: crate::c_types::ThirtyTwoBytes) {
2020         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
2021 }
2022 /// The secret corresponding to the per-commitment point
2023 #[no_mangle]
2024 pub extern "C" fn RevokeAndACK_get_per_commitment_secret(this_ptr: &RevokeAndACK) -> *const [u8; 32] {
2025         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.per_commitment_secret;
2026         inner_val
2027 }
2028 /// The secret corresponding to the per-commitment point
2029 #[no_mangle]
2030 pub extern "C" fn RevokeAndACK_set_per_commitment_secret(this_ptr: &mut RevokeAndACK, mut val: crate::c_types::ThirtyTwoBytes) {
2031         unsafe { &mut *this_ptr.inner }.per_commitment_secret = val.data;
2032 }
2033 /// The next sender-broadcast commitment transaction's per-commitment point
2034 #[no_mangle]
2035 pub extern "C" fn RevokeAndACK_get_next_per_commitment_point(this_ptr: &RevokeAndACK) -> crate::c_types::PublicKey {
2036         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.next_per_commitment_point;
2037         crate::c_types::PublicKey::from_rust(&inner_val)
2038 }
2039 /// The next sender-broadcast commitment transaction's per-commitment point
2040 #[no_mangle]
2041 pub extern "C" fn RevokeAndACK_set_next_per_commitment_point(this_ptr: &mut RevokeAndACK, mut val: crate::c_types::PublicKey) {
2042         unsafe { &mut *this_ptr.inner }.next_per_commitment_point = val.into_rust();
2043 }
2044 /// Constructs a new RevokeAndACK given each field
2045 #[must_use]
2046 #[no_mangle]
2047 pub extern "C" fn RevokeAndACK_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut per_commitment_secret_arg: crate::c_types::ThirtyTwoBytes, mut next_per_commitment_point_arg: crate::c_types::PublicKey) -> RevokeAndACK {
2048         RevokeAndACK { inner: Box::into_raw(Box::new(nativeRevokeAndACK {
2049                 channel_id: channel_id_arg.data,
2050                 per_commitment_secret: per_commitment_secret_arg.data,
2051                 next_per_commitment_point: next_per_commitment_point_arg.into_rust(),
2052         })), is_owned: true }
2053 }
2054 impl Clone for RevokeAndACK {
2055         fn clone(&self) -> Self {
2056                 Self {
2057                         inner: if <*mut nativeRevokeAndACK>::is_null(self.inner) { std::ptr::null_mut() } else {
2058                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
2059                         is_owned: true,
2060                 }
2061         }
2062 }
2063 #[allow(unused)]
2064 /// Used only if an object of this type is returned as a trait impl by a method
2065 pub(crate) extern "C" fn RevokeAndACK_clone_void(this_ptr: *const c_void) -> *mut c_void {
2066         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeRevokeAndACK)).clone() })) as *mut c_void
2067 }
2068 #[no_mangle]
2069 /// Creates a copy of the RevokeAndACK
2070 pub extern "C" fn RevokeAndACK_clone(orig: &RevokeAndACK) -> RevokeAndACK {
2071         orig.clone()
2072 }
2073
2074 use lightning::ln::msgs::UpdateFee as nativeUpdateFeeImport;
2075 type nativeUpdateFee = nativeUpdateFeeImport;
2076
2077 /// An update_fee message to be sent or received from a peer
2078 #[must_use]
2079 #[repr(C)]
2080 pub struct UpdateFee {
2081         /// A pointer to the opaque Rust object.
2082
2083         /// Nearly everywhere, inner must be non-null, however in places where
2084         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
2085         pub inner: *mut nativeUpdateFee,
2086         /// Indicates that this is the only struct which contains the same pointer.
2087
2088         /// Rust functions which take ownership of an object provided via an argument require
2089         /// this to be true and invalidate the object pointed to by inner.
2090         pub is_owned: bool,
2091 }
2092
2093 impl Drop for UpdateFee {
2094         fn drop(&mut self) {
2095                 if self.is_owned && !<*mut nativeUpdateFee>::is_null(self.inner) {
2096                         let _ = unsafe { Box::from_raw(self.inner) };
2097                 }
2098         }
2099 }
2100 /// Frees any resources used by the UpdateFee, if is_owned is set and inner is non-NULL.
2101 #[no_mangle]
2102 pub extern "C" fn UpdateFee_free(this_obj: UpdateFee) { }
2103 #[allow(unused)]
2104 /// Used only if an object of this type is returned as a trait impl by a method
2105 extern "C" fn UpdateFee_free_void(this_ptr: *mut c_void) {
2106         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeUpdateFee); }
2107 }
2108 #[allow(unused)]
2109 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2110 impl UpdateFee {
2111         pub(crate) fn take_inner(mut self) -> *mut nativeUpdateFee {
2112                 assert!(self.is_owned);
2113                 let ret = self.inner;
2114                 self.inner = std::ptr::null_mut();
2115                 ret
2116         }
2117 }
2118 /// The channel ID
2119 #[no_mangle]
2120 pub extern "C" fn UpdateFee_get_channel_id(this_ptr: &UpdateFee) -> *const [u8; 32] {
2121         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
2122         inner_val
2123 }
2124 /// The channel ID
2125 #[no_mangle]
2126 pub extern "C" fn UpdateFee_set_channel_id(this_ptr: &mut UpdateFee, mut val: crate::c_types::ThirtyTwoBytes) {
2127         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
2128 }
2129 /// Fee rate per 1000-weight of the transaction
2130 #[no_mangle]
2131 pub extern "C" fn UpdateFee_get_feerate_per_kw(this_ptr: &UpdateFee) -> u32 {
2132         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.feerate_per_kw;
2133         *inner_val
2134 }
2135 /// Fee rate per 1000-weight of the transaction
2136 #[no_mangle]
2137 pub extern "C" fn UpdateFee_set_feerate_per_kw(this_ptr: &mut UpdateFee, mut val: u32) {
2138         unsafe { &mut *this_ptr.inner }.feerate_per_kw = val;
2139 }
2140 /// Constructs a new UpdateFee given each field
2141 #[must_use]
2142 #[no_mangle]
2143 pub extern "C" fn UpdateFee_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut feerate_per_kw_arg: u32) -> UpdateFee {
2144         UpdateFee { inner: Box::into_raw(Box::new(nativeUpdateFee {
2145                 channel_id: channel_id_arg.data,
2146                 feerate_per_kw: feerate_per_kw_arg,
2147         })), is_owned: true }
2148 }
2149 impl Clone for UpdateFee {
2150         fn clone(&self) -> Self {
2151                 Self {
2152                         inner: if <*mut nativeUpdateFee>::is_null(self.inner) { std::ptr::null_mut() } else {
2153                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
2154                         is_owned: true,
2155                 }
2156         }
2157 }
2158 #[allow(unused)]
2159 /// Used only if an object of this type is returned as a trait impl by a method
2160 pub(crate) extern "C" fn UpdateFee_clone_void(this_ptr: *const c_void) -> *mut c_void {
2161         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeUpdateFee)).clone() })) as *mut c_void
2162 }
2163 #[no_mangle]
2164 /// Creates a copy of the UpdateFee
2165 pub extern "C" fn UpdateFee_clone(orig: &UpdateFee) -> UpdateFee {
2166         orig.clone()
2167 }
2168
2169 use lightning::ln::msgs::DataLossProtect as nativeDataLossProtectImport;
2170 type nativeDataLossProtect = nativeDataLossProtectImport;
2171
2172 /// Proof that the sender knows the per-commitment secret of the previous commitment transaction.
2173 /// This is used to convince the recipient that the channel is at a certain commitment
2174 /// number even if they lost that data due to a local failure.  Of course, the peer may lie
2175 /// and even later commitments may have been revoked.
2176 #[must_use]
2177 #[repr(C)]
2178 pub struct DataLossProtect {
2179         /// A pointer to the opaque Rust object.
2180
2181         /// Nearly everywhere, inner must be non-null, however in places where
2182         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
2183         pub inner: *mut nativeDataLossProtect,
2184         /// Indicates that this is the only struct which contains the same pointer.
2185
2186         /// Rust functions which take ownership of an object provided via an argument require
2187         /// this to be true and invalidate the object pointed to by inner.
2188         pub is_owned: bool,
2189 }
2190
2191 impl Drop for DataLossProtect {
2192         fn drop(&mut self) {
2193                 if self.is_owned && !<*mut nativeDataLossProtect>::is_null(self.inner) {
2194                         let _ = unsafe { Box::from_raw(self.inner) };
2195                 }
2196         }
2197 }
2198 /// Frees any resources used by the DataLossProtect, if is_owned is set and inner is non-NULL.
2199 #[no_mangle]
2200 pub extern "C" fn DataLossProtect_free(this_obj: DataLossProtect) { }
2201 #[allow(unused)]
2202 /// Used only if an object of this type is returned as a trait impl by a method
2203 extern "C" fn DataLossProtect_free_void(this_ptr: *mut c_void) {
2204         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeDataLossProtect); }
2205 }
2206 #[allow(unused)]
2207 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2208 impl DataLossProtect {
2209         pub(crate) fn take_inner(mut self) -> *mut nativeDataLossProtect {
2210                 assert!(self.is_owned);
2211                 let ret = self.inner;
2212                 self.inner = std::ptr::null_mut();
2213                 ret
2214         }
2215 }
2216 /// Proof that the sender knows the per-commitment secret of a specific commitment transaction
2217 /// belonging to the recipient
2218 #[no_mangle]
2219 pub extern "C" fn DataLossProtect_get_your_last_per_commitment_secret(this_ptr: &DataLossProtect) -> *const [u8; 32] {
2220         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.your_last_per_commitment_secret;
2221         inner_val
2222 }
2223 /// Proof that the sender knows the per-commitment secret of a specific commitment transaction
2224 /// belonging to the recipient
2225 #[no_mangle]
2226 pub extern "C" fn DataLossProtect_set_your_last_per_commitment_secret(this_ptr: &mut DataLossProtect, mut val: crate::c_types::ThirtyTwoBytes) {
2227         unsafe { &mut *this_ptr.inner }.your_last_per_commitment_secret = val.data;
2228 }
2229 /// The sender's per-commitment point for their current commitment transaction
2230 #[no_mangle]
2231 pub extern "C" fn DataLossProtect_get_my_current_per_commitment_point(this_ptr: &DataLossProtect) -> crate::c_types::PublicKey {
2232         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.my_current_per_commitment_point;
2233         crate::c_types::PublicKey::from_rust(&inner_val)
2234 }
2235 /// The sender's per-commitment point for their current commitment transaction
2236 #[no_mangle]
2237 pub extern "C" fn DataLossProtect_set_my_current_per_commitment_point(this_ptr: &mut DataLossProtect, mut val: crate::c_types::PublicKey) {
2238         unsafe { &mut *this_ptr.inner }.my_current_per_commitment_point = val.into_rust();
2239 }
2240 /// Constructs a new DataLossProtect given each field
2241 #[must_use]
2242 #[no_mangle]
2243 pub extern "C" fn DataLossProtect_new(mut your_last_per_commitment_secret_arg: crate::c_types::ThirtyTwoBytes, mut my_current_per_commitment_point_arg: crate::c_types::PublicKey) -> DataLossProtect {
2244         DataLossProtect { inner: Box::into_raw(Box::new(nativeDataLossProtect {
2245                 your_last_per_commitment_secret: your_last_per_commitment_secret_arg.data,
2246                 my_current_per_commitment_point: my_current_per_commitment_point_arg.into_rust(),
2247         })), is_owned: true }
2248 }
2249 impl Clone for DataLossProtect {
2250         fn clone(&self) -> Self {
2251                 Self {
2252                         inner: if <*mut nativeDataLossProtect>::is_null(self.inner) { std::ptr::null_mut() } else {
2253                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
2254                         is_owned: true,
2255                 }
2256         }
2257 }
2258 #[allow(unused)]
2259 /// Used only if an object of this type is returned as a trait impl by a method
2260 pub(crate) extern "C" fn DataLossProtect_clone_void(this_ptr: *const c_void) -> *mut c_void {
2261         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeDataLossProtect)).clone() })) as *mut c_void
2262 }
2263 #[no_mangle]
2264 /// Creates a copy of the DataLossProtect
2265 pub extern "C" fn DataLossProtect_clone(orig: &DataLossProtect) -> DataLossProtect {
2266         orig.clone()
2267 }
2268
2269 use lightning::ln::msgs::ChannelReestablish as nativeChannelReestablishImport;
2270 type nativeChannelReestablish = nativeChannelReestablishImport;
2271
2272 /// A channel_reestablish message to be sent or received from a peer
2273 #[must_use]
2274 #[repr(C)]
2275 pub struct ChannelReestablish {
2276         /// A pointer to the opaque Rust object.
2277
2278         /// Nearly everywhere, inner must be non-null, however in places where
2279         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
2280         pub inner: *mut nativeChannelReestablish,
2281         /// Indicates that this is the only struct which contains the same pointer.
2282
2283         /// Rust functions which take ownership of an object provided via an argument require
2284         /// this to be true and invalidate the object pointed to by inner.
2285         pub is_owned: bool,
2286 }
2287
2288 impl Drop for ChannelReestablish {
2289         fn drop(&mut self) {
2290                 if self.is_owned && !<*mut nativeChannelReestablish>::is_null(self.inner) {
2291                         let _ = unsafe { Box::from_raw(self.inner) };
2292                 }
2293         }
2294 }
2295 /// Frees any resources used by the ChannelReestablish, if is_owned is set and inner is non-NULL.
2296 #[no_mangle]
2297 pub extern "C" fn ChannelReestablish_free(this_obj: ChannelReestablish) { }
2298 #[allow(unused)]
2299 /// Used only if an object of this type is returned as a trait impl by a method
2300 extern "C" fn ChannelReestablish_free_void(this_ptr: *mut c_void) {
2301         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelReestablish); }
2302 }
2303 #[allow(unused)]
2304 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2305 impl ChannelReestablish {
2306         pub(crate) fn take_inner(mut self) -> *mut nativeChannelReestablish {
2307                 assert!(self.is_owned);
2308                 let ret = self.inner;
2309                 self.inner = std::ptr::null_mut();
2310                 ret
2311         }
2312 }
2313 /// The channel ID
2314 #[no_mangle]
2315 pub extern "C" fn ChannelReestablish_get_channel_id(this_ptr: &ChannelReestablish) -> *const [u8; 32] {
2316         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
2317         inner_val
2318 }
2319 /// The channel ID
2320 #[no_mangle]
2321 pub extern "C" fn ChannelReestablish_set_channel_id(this_ptr: &mut ChannelReestablish, mut val: crate::c_types::ThirtyTwoBytes) {
2322         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
2323 }
2324 /// The next commitment number for the sender
2325 #[no_mangle]
2326 pub extern "C" fn ChannelReestablish_get_next_local_commitment_number(this_ptr: &ChannelReestablish) -> u64 {
2327         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.next_local_commitment_number;
2328         *inner_val
2329 }
2330 /// The next commitment number for the sender
2331 #[no_mangle]
2332 pub extern "C" fn ChannelReestablish_set_next_local_commitment_number(this_ptr: &mut ChannelReestablish, mut val: u64) {
2333         unsafe { &mut *this_ptr.inner }.next_local_commitment_number = val;
2334 }
2335 /// The next commitment number for the recipient
2336 #[no_mangle]
2337 pub extern "C" fn ChannelReestablish_get_next_remote_commitment_number(this_ptr: &ChannelReestablish) -> u64 {
2338         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.next_remote_commitment_number;
2339         *inner_val
2340 }
2341 /// The next commitment number for the recipient
2342 #[no_mangle]
2343 pub extern "C" fn ChannelReestablish_set_next_remote_commitment_number(this_ptr: &mut ChannelReestablish, mut val: u64) {
2344         unsafe { &mut *this_ptr.inner }.next_remote_commitment_number = val;
2345 }
2346 impl Clone for ChannelReestablish {
2347         fn clone(&self) -> Self {
2348                 Self {
2349                         inner: if <*mut nativeChannelReestablish>::is_null(self.inner) { std::ptr::null_mut() } else {
2350                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
2351                         is_owned: true,
2352                 }
2353         }
2354 }
2355 #[allow(unused)]
2356 /// Used only if an object of this type is returned as a trait impl by a method
2357 pub(crate) extern "C" fn ChannelReestablish_clone_void(this_ptr: *const c_void) -> *mut c_void {
2358         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelReestablish)).clone() })) as *mut c_void
2359 }
2360 #[no_mangle]
2361 /// Creates a copy of the ChannelReestablish
2362 pub extern "C" fn ChannelReestablish_clone(orig: &ChannelReestablish) -> ChannelReestablish {
2363         orig.clone()
2364 }
2365
2366 use lightning::ln::msgs::AnnouncementSignatures as nativeAnnouncementSignaturesImport;
2367 type nativeAnnouncementSignatures = nativeAnnouncementSignaturesImport;
2368
2369 /// An announcement_signatures message to be sent or received from a peer
2370 #[must_use]
2371 #[repr(C)]
2372 pub struct AnnouncementSignatures {
2373         /// A pointer to the opaque Rust object.
2374
2375         /// Nearly everywhere, inner must be non-null, however in places where
2376         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
2377         pub inner: *mut nativeAnnouncementSignatures,
2378         /// Indicates that this is the only struct which contains the same pointer.
2379
2380         /// Rust functions which take ownership of an object provided via an argument require
2381         /// this to be true and invalidate the object pointed to by inner.
2382         pub is_owned: bool,
2383 }
2384
2385 impl Drop for AnnouncementSignatures {
2386         fn drop(&mut self) {
2387                 if self.is_owned && !<*mut nativeAnnouncementSignatures>::is_null(self.inner) {
2388                         let _ = unsafe { Box::from_raw(self.inner) };
2389                 }
2390         }
2391 }
2392 /// Frees any resources used by the AnnouncementSignatures, if is_owned is set and inner is non-NULL.
2393 #[no_mangle]
2394 pub extern "C" fn AnnouncementSignatures_free(this_obj: AnnouncementSignatures) { }
2395 #[allow(unused)]
2396 /// Used only if an object of this type is returned as a trait impl by a method
2397 extern "C" fn AnnouncementSignatures_free_void(this_ptr: *mut c_void) {
2398         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeAnnouncementSignatures); }
2399 }
2400 #[allow(unused)]
2401 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2402 impl AnnouncementSignatures {
2403         pub(crate) fn take_inner(mut self) -> *mut nativeAnnouncementSignatures {
2404                 assert!(self.is_owned);
2405                 let ret = self.inner;
2406                 self.inner = std::ptr::null_mut();
2407                 ret
2408         }
2409 }
2410 /// The channel ID
2411 #[no_mangle]
2412 pub extern "C" fn AnnouncementSignatures_get_channel_id(this_ptr: &AnnouncementSignatures) -> *const [u8; 32] {
2413         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
2414         inner_val
2415 }
2416 /// The channel ID
2417 #[no_mangle]
2418 pub extern "C" fn AnnouncementSignatures_set_channel_id(this_ptr: &mut AnnouncementSignatures, mut val: crate::c_types::ThirtyTwoBytes) {
2419         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
2420 }
2421 /// The short channel ID
2422 #[no_mangle]
2423 pub extern "C" fn AnnouncementSignatures_get_short_channel_id(this_ptr: &AnnouncementSignatures) -> u64 {
2424         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
2425         *inner_val
2426 }
2427 /// The short channel ID
2428 #[no_mangle]
2429 pub extern "C" fn AnnouncementSignatures_set_short_channel_id(this_ptr: &mut AnnouncementSignatures, mut val: u64) {
2430         unsafe { &mut *this_ptr.inner }.short_channel_id = val;
2431 }
2432 /// A signature by the node key
2433 #[no_mangle]
2434 pub extern "C" fn AnnouncementSignatures_get_node_signature(this_ptr: &AnnouncementSignatures) -> crate::c_types::Signature {
2435         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_signature;
2436         crate::c_types::Signature::from_rust(&inner_val)
2437 }
2438 /// A signature by the node key
2439 #[no_mangle]
2440 pub extern "C" fn AnnouncementSignatures_set_node_signature(this_ptr: &mut AnnouncementSignatures, mut val: crate::c_types::Signature) {
2441         unsafe { &mut *this_ptr.inner }.node_signature = val.into_rust();
2442 }
2443 /// A signature by the funding key
2444 #[no_mangle]
2445 pub extern "C" fn AnnouncementSignatures_get_bitcoin_signature(this_ptr: &AnnouncementSignatures) -> crate::c_types::Signature {
2446         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.bitcoin_signature;
2447         crate::c_types::Signature::from_rust(&inner_val)
2448 }
2449 /// A signature by the funding key
2450 #[no_mangle]
2451 pub extern "C" fn AnnouncementSignatures_set_bitcoin_signature(this_ptr: &mut AnnouncementSignatures, mut val: crate::c_types::Signature) {
2452         unsafe { &mut *this_ptr.inner }.bitcoin_signature = val.into_rust();
2453 }
2454 /// Constructs a new AnnouncementSignatures given each field
2455 #[must_use]
2456 #[no_mangle]
2457 pub extern "C" fn AnnouncementSignatures_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut short_channel_id_arg: u64, mut node_signature_arg: crate::c_types::Signature, mut bitcoin_signature_arg: crate::c_types::Signature) -> AnnouncementSignatures {
2458         AnnouncementSignatures { inner: Box::into_raw(Box::new(nativeAnnouncementSignatures {
2459                 channel_id: channel_id_arg.data,
2460                 short_channel_id: short_channel_id_arg,
2461                 node_signature: node_signature_arg.into_rust(),
2462                 bitcoin_signature: bitcoin_signature_arg.into_rust(),
2463         })), is_owned: true }
2464 }
2465 impl Clone for AnnouncementSignatures {
2466         fn clone(&self) -> Self {
2467                 Self {
2468                         inner: if <*mut nativeAnnouncementSignatures>::is_null(self.inner) { std::ptr::null_mut() } else {
2469                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
2470                         is_owned: true,
2471                 }
2472         }
2473 }
2474 #[allow(unused)]
2475 /// Used only if an object of this type is returned as a trait impl by a method
2476 pub(crate) extern "C" fn AnnouncementSignatures_clone_void(this_ptr: *const c_void) -> *mut c_void {
2477         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeAnnouncementSignatures)).clone() })) as *mut c_void
2478 }
2479 #[no_mangle]
2480 /// Creates a copy of the AnnouncementSignatures
2481 pub extern "C" fn AnnouncementSignatures_clone(orig: &AnnouncementSignatures) -> AnnouncementSignatures {
2482         orig.clone()
2483 }
2484 /// An address which can be used to connect to a remote peer
2485 #[must_use]
2486 #[derive(Clone)]
2487 #[repr(C)]
2488 pub enum NetAddress {
2489         /// An IPv4 address/port on which the peer is listening.
2490         IPv4 {
2491                 /// The 4-byte IPv4 address
2492                 addr: crate::c_types::FourBytes,
2493                 /// The port on which the node is listening
2494                 port: u16,
2495         },
2496         /// An IPv6 address/port on which the peer is listening.
2497         IPv6 {
2498                 /// The 16-byte IPv6 address
2499                 addr: crate::c_types::SixteenBytes,
2500                 /// The port on which the node is listening
2501                 port: u16,
2502         },
2503         /// An old-style Tor onion address/port on which the peer is listening.
2504         OnionV2 {
2505                 /// The bytes (usually encoded in base32 with \".onion\" appended)
2506                 addr: crate::c_types::TenBytes,
2507                 /// The port on which the node is listening
2508                 port: u16,
2509         },
2510         /// A new-style Tor onion address/port on which the peer is listening.
2511         /// To create the human-readable \"hostname\", concatenate ed25519_pubkey, checksum, and version,
2512         /// wrap as base32 and append \".onion\".
2513         OnionV3 {
2514                 /// The ed25519 long-term public key of the peer
2515                 ed25519_pubkey: crate::c_types::ThirtyTwoBytes,
2516                 /// The checksum of the pubkey and version, as included in the onion address
2517                 checksum: u16,
2518                 /// The version byte, as defined by the Tor Onion v3 spec.
2519                 version: u8,
2520                 /// The port on which the node is listening
2521                 port: u16,
2522         },
2523 }
2524 use lightning::ln::msgs::NetAddress as nativeNetAddress;
2525 impl NetAddress {
2526         #[allow(unused)]
2527         pub(crate) fn to_native(&self) -> nativeNetAddress {
2528                 match self {
2529                         NetAddress::IPv4 {ref addr, ref port, } => {
2530                                 let mut addr_nonref = (*addr).clone();
2531                                 let mut port_nonref = (*port).clone();
2532                                 nativeNetAddress::IPv4 {
2533                                         addr: addr_nonref.data,
2534                                         port: port_nonref,
2535                                 }
2536                         },
2537                         NetAddress::IPv6 {ref addr, ref port, } => {
2538                                 let mut addr_nonref = (*addr).clone();
2539                                 let mut port_nonref = (*port).clone();
2540                                 nativeNetAddress::IPv6 {
2541                                         addr: addr_nonref.data,
2542                                         port: port_nonref,
2543                                 }
2544                         },
2545                         NetAddress::OnionV2 {ref addr, ref port, } => {
2546                                 let mut addr_nonref = (*addr).clone();
2547                                 let mut port_nonref = (*port).clone();
2548                                 nativeNetAddress::OnionV2 {
2549                                         addr: addr_nonref.data,
2550                                         port: port_nonref,
2551                                 }
2552                         },
2553                         NetAddress::OnionV3 {ref ed25519_pubkey, ref checksum, ref version, ref port, } => {
2554                                 let mut ed25519_pubkey_nonref = (*ed25519_pubkey).clone();
2555                                 let mut checksum_nonref = (*checksum).clone();
2556                                 let mut version_nonref = (*version).clone();
2557                                 let mut port_nonref = (*port).clone();
2558                                 nativeNetAddress::OnionV3 {
2559                                         ed25519_pubkey: ed25519_pubkey_nonref.data,
2560                                         checksum: checksum_nonref,
2561                                         version: version_nonref,
2562                                         port: port_nonref,
2563                                 }
2564                         },
2565                 }
2566         }
2567         #[allow(unused)]
2568         pub(crate) fn into_native(self) -> nativeNetAddress {
2569                 match self {
2570                         NetAddress::IPv4 {mut addr, mut port, } => {
2571                                 nativeNetAddress::IPv4 {
2572                                         addr: addr.data,
2573                                         port: port,
2574                                 }
2575                         },
2576                         NetAddress::IPv6 {mut addr, mut port, } => {
2577                                 nativeNetAddress::IPv6 {
2578                                         addr: addr.data,
2579                                         port: port,
2580                                 }
2581                         },
2582                         NetAddress::OnionV2 {mut addr, mut port, } => {
2583                                 nativeNetAddress::OnionV2 {
2584                                         addr: addr.data,
2585                                         port: port,
2586                                 }
2587                         },
2588                         NetAddress::OnionV3 {mut ed25519_pubkey, mut checksum, mut version, mut port, } => {
2589                                 nativeNetAddress::OnionV3 {
2590                                         ed25519_pubkey: ed25519_pubkey.data,
2591                                         checksum: checksum,
2592                                         version: version,
2593                                         port: port,
2594                                 }
2595                         },
2596                 }
2597         }
2598         #[allow(unused)]
2599         pub(crate) fn from_native(native: &nativeNetAddress) -> Self {
2600                 match native {
2601                         nativeNetAddress::IPv4 {ref addr, ref port, } => {
2602                                 let mut addr_nonref = (*addr).clone();
2603                                 let mut port_nonref = (*port).clone();
2604                                 NetAddress::IPv4 {
2605                                         addr: crate::c_types::FourBytes { data: addr_nonref },
2606                                         port: port_nonref,
2607                                 }
2608                         },
2609                         nativeNetAddress::IPv6 {ref addr, ref port, } => {
2610                                 let mut addr_nonref = (*addr).clone();
2611                                 let mut port_nonref = (*port).clone();
2612                                 NetAddress::IPv6 {
2613                                         addr: crate::c_types::SixteenBytes { data: addr_nonref },
2614                                         port: port_nonref,
2615                                 }
2616                         },
2617                         nativeNetAddress::OnionV2 {ref addr, ref port, } => {
2618                                 let mut addr_nonref = (*addr).clone();
2619                                 let mut port_nonref = (*port).clone();
2620                                 NetAddress::OnionV2 {
2621                                         addr: crate::c_types::TenBytes { data: addr_nonref },
2622                                         port: port_nonref,
2623                                 }
2624                         },
2625                         nativeNetAddress::OnionV3 {ref ed25519_pubkey, ref checksum, ref version, ref port, } => {
2626                                 let mut ed25519_pubkey_nonref = (*ed25519_pubkey).clone();
2627                                 let mut checksum_nonref = (*checksum).clone();
2628                                 let mut version_nonref = (*version).clone();
2629                                 let mut port_nonref = (*port).clone();
2630                                 NetAddress::OnionV3 {
2631                                         ed25519_pubkey: crate::c_types::ThirtyTwoBytes { data: ed25519_pubkey_nonref },
2632                                         checksum: checksum_nonref,
2633                                         version: version_nonref,
2634                                         port: port_nonref,
2635                                 }
2636                         },
2637                 }
2638         }
2639         #[allow(unused)]
2640         pub(crate) fn native_into(native: nativeNetAddress) -> Self {
2641                 match native {
2642                         nativeNetAddress::IPv4 {mut addr, mut port, } => {
2643                                 NetAddress::IPv4 {
2644                                         addr: crate::c_types::FourBytes { data: addr },
2645                                         port: port,
2646                                 }
2647                         },
2648                         nativeNetAddress::IPv6 {mut addr, mut port, } => {
2649                                 NetAddress::IPv6 {
2650                                         addr: crate::c_types::SixteenBytes { data: addr },
2651                                         port: port,
2652                                 }
2653                         },
2654                         nativeNetAddress::OnionV2 {mut addr, mut port, } => {
2655                                 NetAddress::OnionV2 {
2656                                         addr: crate::c_types::TenBytes { data: addr },
2657                                         port: port,
2658                                 }
2659                         },
2660                         nativeNetAddress::OnionV3 {mut ed25519_pubkey, mut checksum, mut version, mut port, } => {
2661                                 NetAddress::OnionV3 {
2662                                         ed25519_pubkey: crate::c_types::ThirtyTwoBytes { data: ed25519_pubkey },
2663                                         checksum: checksum,
2664                                         version: version,
2665                                         port: port,
2666                                 }
2667                         },
2668                 }
2669         }
2670 }
2671 /// Frees any resources used by the NetAddress
2672 #[no_mangle]
2673 pub extern "C" fn NetAddress_free(this_ptr: NetAddress) { }
2674 /// Creates a copy of the NetAddress
2675 #[no_mangle]
2676 pub extern "C" fn NetAddress_clone(orig: &NetAddress) -> NetAddress {
2677         orig.clone()
2678 }
2679 #[no_mangle]
2680 /// Serialize the NetAddress object into a byte array which can be read by NetAddress_read
2681 pub extern "C" fn NetAddress_write(obj: &NetAddress) -> crate::c_types::derived::CVec_u8Z {
2682         crate::c_types::serialize_obj(&unsafe { &*obj }.to_native())
2683 }
2684 #[no_mangle]
2685 /// Read a Result from a byte array, created by Result_write
2686 pub extern "C" fn Result_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_CResult_NetAddressu8ZDecodeErrorZ {
2687         let res = crate::c_types::deserialize_obj(ser);
2688         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_res_0 = match o { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::NetAddress::native_into(o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { e }).into() }; local_res_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
2689         local_res
2690 }
2691
2692 use lightning::ln::msgs::UnsignedNodeAnnouncement as nativeUnsignedNodeAnnouncementImport;
2693 type nativeUnsignedNodeAnnouncement = nativeUnsignedNodeAnnouncementImport;
2694
2695 /// The unsigned part of a node_announcement
2696 #[must_use]
2697 #[repr(C)]
2698 pub struct UnsignedNodeAnnouncement {
2699         /// A pointer to the opaque Rust object.
2700
2701         /// Nearly everywhere, inner must be non-null, however in places where
2702         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
2703         pub inner: *mut nativeUnsignedNodeAnnouncement,
2704         /// Indicates that this is the only struct which contains the same pointer.
2705
2706         /// Rust functions which take ownership of an object provided via an argument require
2707         /// this to be true and invalidate the object pointed to by inner.
2708         pub is_owned: bool,
2709 }
2710
2711 impl Drop for UnsignedNodeAnnouncement {
2712         fn drop(&mut self) {
2713                 if self.is_owned && !<*mut nativeUnsignedNodeAnnouncement>::is_null(self.inner) {
2714                         let _ = unsafe { Box::from_raw(self.inner) };
2715                 }
2716         }
2717 }
2718 /// Frees any resources used by the UnsignedNodeAnnouncement, if is_owned is set and inner is non-NULL.
2719 #[no_mangle]
2720 pub extern "C" fn UnsignedNodeAnnouncement_free(this_obj: UnsignedNodeAnnouncement) { }
2721 #[allow(unused)]
2722 /// Used only if an object of this type is returned as a trait impl by a method
2723 extern "C" fn UnsignedNodeAnnouncement_free_void(this_ptr: *mut c_void) {
2724         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeUnsignedNodeAnnouncement); }
2725 }
2726 #[allow(unused)]
2727 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2728 impl UnsignedNodeAnnouncement {
2729         pub(crate) fn take_inner(mut self) -> *mut nativeUnsignedNodeAnnouncement {
2730                 assert!(self.is_owned);
2731                 let ret = self.inner;
2732                 self.inner = std::ptr::null_mut();
2733                 ret
2734         }
2735 }
2736 /// The advertised features
2737 #[no_mangle]
2738 pub extern "C" fn UnsignedNodeAnnouncement_get_features(this_ptr: &UnsignedNodeAnnouncement) -> crate::lightning::ln::features::NodeFeatures {
2739         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.features;
2740         crate::lightning::ln::features::NodeFeatures { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
2741 }
2742 /// The advertised features
2743 #[no_mangle]
2744 pub extern "C" fn UnsignedNodeAnnouncement_set_features(this_ptr: &mut UnsignedNodeAnnouncement, mut val: crate::lightning::ln::features::NodeFeatures) {
2745         unsafe { &mut *this_ptr.inner }.features = *unsafe { Box::from_raw(val.take_inner()) };
2746 }
2747 /// A strictly monotonic announcement counter, with gaps allowed
2748 #[no_mangle]
2749 pub extern "C" fn UnsignedNodeAnnouncement_get_timestamp(this_ptr: &UnsignedNodeAnnouncement) -> u32 {
2750         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.timestamp;
2751         *inner_val
2752 }
2753 /// A strictly monotonic announcement counter, with gaps allowed
2754 #[no_mangle]
2755 pub extern "C" fn UnsignedNodeAnnouncement_set_timestamp(this_ptr: &mut UnsignedNodeAnnouncement, mut val: u32) {
2756         unsafe { &mut *this_ptr.inner }.timestamp = val;
2757 }
2758 /// The node_id this announcement originated from (don't rebroadcast the node_announcement back
2759 /// to this node).
2760 #[no_mangle]
2761 pub extern "C" fn UnsignedNodeAnnouncement_get_node_id(this_ptr: &UnsignedNodeAnnouncement) -> crate::c_types::PublicKey {
2762         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_id;
2763         crate::c_types::PublicKey::from_rust(&inner_val)
2764 }
2765 /// The node_id this announcement originated from (don't rebroadcast the node_announcement back
2766 /// to this node).
2767 #[no_mangle]
2768 pub extern "C" fn UnsignedNodeAnnouncement_set_node_id(this_ptr: &mut UnsignedNodeAnnouncement, mut val: crate::c_types::PublicKey) {
2769         unsafe { &mut *this_ptr.inner }.node_id = val.into_rust();
2770 }
2771 /// An RGB color for UI purposes
2772 #[no_mangle]
2773 pub extern "C" fn UnsignedNodeAnnouncement_get_rgb(this_ptr: &UnsignedNodeAnnouncement) -> *const [u8; 3] {
2774         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.rgb;
2775         inner_val
2776 }
2777 /// An RGB color for UI purposes
2778 #[no_mangle]
2779 pub extern "C" fn UnsignedNodeAnnouncement_set_rgb(this_ptr: &mut UnsignedNodeAnnouncement, mut val: crate::c_types::ThreeBytes) {
2780         unsafe { &mut *this_ptr.inner }.rgb = val.data;
2781 }
2782 /// An alias, for UI purposes.  This should be sanitized before use.  There is no guarantee
2783 /// of uniqueness.
2784 #[no_mangle]
2785 pub extern "C" fn UnsignedNodeAnnouncement_get_alias(this_ptr: &UnsignedNodeAnnouncement) -> *const [u8; 32] {
2786         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.alias;
2787         inner_val
2788 }
2789 /// An alias, for UI purposes.  This should be sanitized before use.  There is no guarantee
2790 /// of uniqueness.
2791 #[no_mangle]
2792 pub extern "C" fn UnsignedNodeAnnouncement_set_alias(this_ptr: &mut UnsignedNodeAnnouncement, mut val: crate::c_types::ThirtyTwoBytes) {
2793         unsafe { &mut *this_ptr.inner }.alias = val.data;
2794 }
2795 /// List of addresses on which this node is reachable
2796 #[no_mangle]
2797 pub extern "C" fn UnsignedNodeAnnouncement_set_addresses(this_ptr: &mut UnsignedNodeAnnouncement, mut val: crate::c_types::derived::CVec_NetAddressZ) {
2798         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item.into_native() }); };
2799         unsafe { &mut *this_ptr.inner }.addresses = local_val;
2800 }
2801 impl Clone for UnsignedNodeAnnouncement {
2802         fn clone(&self) -> Self {
2803                 Self {
2804                         inner: if <*mut nativeUnsignedNodeAnnouncement>::is_null(self.inner) { std::ptr::null_mut() } else {
2805                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
2806                         is_owned: true,
2807                 }
2808         }
2809 }
2810 #[allow(unused)]
2811 /// Used only if an object of this type is returned as a trait impl by a method
2812 pub(crate) extern "C" fn UnsignedNodeAnnouncement_clone_void(this_ptr: *const c_void) -> *mut c_void {
2813         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeUnsignedNodeAnnouncement)).clone() })) as *mut c_void
2814 }
2815 #[no_mangle]
2816 /// Creates a copy of the UnsignedNodeAnnouncement
2817 pub extern "C" fn UnsignedNodeAnnouncement_clone(orig: &UnsignedNodeAnnouncement) -> UnsignedNodeAnnouncement {
2818         orig.clone()
2819 }
2820
2821 use lightning::ln::msgs::NodeAnnouncement as nativeNodeAnnouncementImport;
2822 type nativeNodeAnnouncement = nativeNodeAnnouncementImport;
2823
2824 /// A node_announcement message to be sent or received from a peer
2825 #[must_use]
2826 #[repr(C)]
2827 pub struct NodeAnnouncement {
2828         /// A pointer to the opaque Rust object.
2829
2830         /// Nearly everywhere, inner must be non-null, however in places where
2831         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
2832         pub inner: *mut nativeNodeAnnouncement,
2833         /// Indicates that this is the only struct which contains the same pointer.
2834
2835         /// Rust functions which take ownership of an object provided via an argument require
2836         /// this to be true and invalidate the object pointed to by inner.
2837         pub is_owned: bool,
2838 }
2839
2840 impl Drop for NodeAnnouncement {
2841         fn drop(&mut self) {
2842                 if self.is_owned && !<*mut nativeNodeAnnouncement>::is_null(self.inner) {
2843                         let _ = unsafe { Box::from_raw(self.inner) };
2844                 }
2845         }
2846 }
2847 /// Frees any resources used by the NodeAnnouncement, if is_owned is set and inner is non-NULL.
2848 #[no_mangle]
2849 pub extern "C" fn NodeAnnouncement_free(this_obj: NodeAnnouncement) { }
2850 #[allow(unused)]
2851 /// Used only if an object of this type is returned as a trait impl by a method
2852 extern "C" fn NodeAnnouncement_free_void(this_ptr: *mut c_void) {
2853         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNodeAnnouncement); }
2854 }
2855 #[allow(unused)]
2856 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2857 impl NodeAnnouncement {
2858         pub(crate) fn take_inner(mut self) -> *mut nativeNodeAnnouncement {
2859                 assert!(self.is_owned);
2860                 let ret = self.inner;
2861                 self.inner = std::ptr::null_mut();
2862                 ret
2863         }
2864 }
2865 /// The signature by the node key
2866 #[no_mangle]
2867 pub extern "C" fn NodeAnnouncement_get_signature(this_ptr: &NodeAnnouncement) -> crate::c_types::Signature {
2868         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.signature;
2869         crate::c_types::Signature::from_rust(&inner_val)
2870 }
2871 /// The signature by the node key
2872 #[no_mangle]
2873 pub extern "C" fn NodeAnnouncement_set_signature(this_ptr: &mut NodeAnnouncement, mut val: crate::c_types::Signature) {
2874         unsafe { &mut *this_ptr.inner }.signature = val.into_rust();
2875 }
2876 /// The actual content of the announcement
2877 #[no_mangle]
2878 pub extern "C" fn NodeAnnouncement_get_contents(this_ptr: &NodeAnnouncement) -> crate::lightning::ln::msgs::UnsignedNodeAnnouncement {
2879         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.contents;
2880         crate::lightning::ln::msgs::UnsignedNodeAnnouncement { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
2881 }
2882 /// The actual content of the announcement
2883 #[no_mangle]
2884 pub extern "C" fn NodeAnnouncement_set_contents(this_ptr: &mut NodeAnnouncement, mut val: crate::lightning::ln::msgs::UnsignedNodeAnnouncement) {
2885         unsafe { &mut *this_ptr.inner }.contents = *unsafe { Box::from_raw(val.take_inner()) };
2886 }
2887 /// Constructs a new NodeAnnouncement given each field
2888 #[must_use]
2889 #[no_mangle]
2890 pub extern "C" fn NodeAnnouncement_new(mut signature_arg: crate::c_types::Signature, mut contents_arg: crate::lightning::ln::msgs::UnsignedNodeAnnouncement) -> NodeAnnouncement {
2891         NodeAnnouncement { inner: Box::into_raw(Box::new(nativeNodeAnnouncement {
2892                 signature: signature_arg.into_rust(),
2893                 contents: *unsafe { Box::from_raw(contents_arg.take_inner()) },
2894         })), is_owned: true }
2895 }
2896 impl Clone for NodeAnnouncement {
2897         fn clone(&self) -> Self {
2898                 Self {
2899                         inner: if <*mut nativeNodeAnnouncement>::is_null(self.inner) { std::ptr::null_mut() } else {
2900                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
2901                         is_owned: true,
2902                 }
2903         }
2904 }
2905 #[allow(unused)]
2906 /// Used only if an object of this type is returned as a trait impl by a method
2907 pub(crate) extern "C" fn NodeAnnouncement_clone_void(this_ptr: *const c_void) -> *mut c_void {
2908         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeNodeAnnouncement)).clone() })) as *mut c_void
2909 }
2910 #[no_mangle]
2911 /// Creates a copy of the NodeAnnouncement
2912 pub extern "C" fn NodeAnnouncement_clone(orig: &NodeAnnouncement) -> NodeAnnouncement {
2913         orig.clone()
2914 }
2915
2916 use lightning::ln::msgs::UnsignedChannelAnnouncement as nativeUnsignedChannelAnnouncementImport;
2917 type nativeUnsignedChannelAnnouncement = nativeUnsignedChannelAnnouncementImport;
2918
2919 /// The unsigned part of a channel_announcement
2920 #[must_use]
2921 #[repr(C)]
2922 pub struct UnsignedChannelAnnouncement {
2923         /// A pointer to the opaque Rust object.
2924
2925         /// Nearly everywhere, inner must be non-null, however in places where
2926         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
2927         pub inner: *mut nativeUnsignedChannelAnnouncement,
2928         /// Indicates that this is the only struct which contains the same pointer.
2929
2930         /// Rust functions which take ownership of an object provided via an argument require
2931         /// this to be true and invalidate the object pointed to by inner.
2932         pub is_owned: bool,
2933 }
2934
2935 impl Drop for UnsignedChannelAnnouncement {
2936         fn drop(&mut self) {
2937                 if self.is_owned && !<*mut nativeUnsignedChannelAnnouncement>::is_null(self.inner) {
2938                         let _ = unsafe { Box::from_raw(self.inner) };
2939                 }
2940         }
2941 }
2942 /// Frees any resources used by the UnsignedChannelAnnouncement, if is_owned is set and inner is non-NULL.
2943 #[no_mangle]
2944 pub extern "C" fn UnsignedChannelAnnouncement_free(this_obj: UnsignedChannelAnnouncement) { }
2945 #[allow(unused)]
2946 /// Used only if an object of this type is returned as a trait impl by a method
2947 extern "C" fn UnsignedChannelAnnouncement_free_void(this_ptr: *mut c_void) {
2948         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeUnsignedChannelAnnouncement); }
2949 }
2950 #[allow(unused)]
2951 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
2952 impl UnsignedChannelAnnouncement {
2953         pub(crate) fn take_inner(mut self) -> *mut nativeUnsignedChannelAnnouncement {
2954                 assert!(self.is_owned);
2955                 let ret = self.inner;
2956                 self.inner = std::ptr::null_mut();
2957                 ret
2958         }
2959 }
2960 /// The advertised channel features
2961 #[no_mangle]
2962 pub extern "C" fn UnsignedChannelAnnouncement_get_features(this_ptr: &UnsignedChannelAnnouncement) -> crate::lightning::ln::features::ChannelFeatures {
2963         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.features;
2964         crate::lightning::ln::features::ChannelFeatures { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
2965 }
2966 /// The advertised channel features
2967 #[no_mangle]
2968 pub extern "C" fn UnsignedChannelAnnouncement_set_features(this_ptr: &mut UnsignedChannelAnnouncement, mut val: crate::lightning::ln::features::ChannelFeatures) {
2969         unsafe { &mut *this_ptr.inner }.features = *unsafe { Box::from_raw(val.take_inner()) };
2970 }
2971 /// The genesis hash of the blockchain where the channel is to be opened
2972 #[no_mangle]
2973 pub extern "C" fn UnsignedChannelAnnouncement_get_chain_hash(this_ptr: &UnsignedChannelAnnouncement) -> *const [u8; 32] {
2974         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_hash;
2975         inner_val.as_inner()
2976 }
2977 /// The genesis hash of the blockchain where the channel is to be opened
2978 #[no_mangle]
2979 pub extern "C" fn UnsignedChannelAnnouncement_set_chain_hash(this_ptr: &mut UnsignedChannelAnnouncement, mut val: crate::c_types::ThirtyTwoBytes) {
2980         unsafe { &mut *this_ptr.inner }.chain_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
2981 }
2982 /// The short channel ID
2983 #[no_mangle]
2984 pub extern "C" fn UnsignedChannelAnnouncement_get_short_channel_id(this_ptr: &UnsignedChannelAnnouncement) -> u64 {
2985         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
2986         *inner_val
2987 }
2988 /// The short channel ID
2989 #[no_mangle]
2990 pub extern "C" fn UnsignedChannelAnnouncement_set_short_channel_id(this_ptr: &mut UnsignedChannelAnnouncement, mut val: u64) {
2991         unsafe { &mut *this_ptr.inner }.short_channel_id = val;
2992 }
2993 /// One of the two node_ids which are endpoints of this channel
2994 #[no_mangle]
2995 pub extern "C" fn UnsignedChannelAnnouncement_get_node_id_1(this_ptr: &UnsignedChannelAnnouncement) -> crate::c_types::PublicKey {
2996         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_id_1;
2997         crate::c_types::PublicKey::from_rust(&inner_val)
2998 }
2999 /// One of the two node_ids which are endpoints of this channel
3000 #[no_mangle]
3001 pub extern "C" fn UnsignedChannelAnnouncement_set_node_id_1(this_ptr: &mut UnsignedChannelAnnouncement, mut val: crate::c_types::PublicKey) {
3002         unsafe { &mut *this_ptr.inner }.node_id_1 = val.into_rust();
3003 }
3004 /// The other of the two node_ids which are endpoints of this channel
3005 #[no_mangle]
3006 pub extern "C" fn UnsignedChannelAnnouncement_get_node_id_2(this_ptr: &UnsignedChannelAnnouncement) -> crate::c_types::PublicKey {
3007         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_id_2;
3008         crate::c_types::PublicKey::from_rust(&inner_val)
3009 }
3010 /// The other of the two node_ids which are endpoints of this channel
3011 #[no_mangle]
3012 pub extern "C" fn UnsignedChannelAnnouncement_set_node_id_2(this_ptr: &mut UnsignedChannelAnnouncement, mut val: crate::c_types::PublicKey) {
3013         unsafe { &mut *this_ptr.inner }.node_id_2 = val.into_rust();
3014 }
3015 /// The funding key for the first node
3016 #[no_mangle]
3017 pub extern "C" fn UnsignedChannelAnnouncement_get_bitcoin_key_1(this_ptr: &UnsignedChannelAnnouncement) -> crate::c_types::PublicKey {
3018         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.bitcoin_key_1;
3019         crate::c_types::PublicKey::from_rust(&inner_val)
3020 }
3021 /// The funding key for the first node
3022 #[no_mangle]
3023 pub extern "C" fn UnsignedChannelAnnouncement_set_bitcoin_key_1(this_ptr: &mut UnsignedChannelAnnouncement, mut val: crate::c_types::PublicKey) {
3024         unsafe { &mut *this_ptr.inner }.bitcoin_key_1 = val.into_rust();
3025 }
3026 /// The funding key for the second node
3027 #[no_mangle]
3028 pub extern "C" fn UnsignedChannelAnnouncement_get_bitcoin_key_2(this_ptr: &UnsignedChannelAnnouncement) -> crate::c_types::PublicKey {
3029         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.bitcoin_key_2;
3030         crate::c_types::PublicKey::from_rust(&inner_val)
3031 }
3032 /// The funding key for the second node
3033 #[no_mangle]
3034 pub extern "C" fn UnsignedChannelAnnouncement_set_bitcoin_key_2(this_ptr: &mut UnsignedChannelAnnouncement, mut val: crate::c_types::PublicKey) {
3035         unsafe { &mut *this_ptr.inner }.bitcoin_key_2 = val.into_rust();
3036 }
3037 impl Clone for UnsignedChannelAnnouncement {
3038         fn clone(&self) -> Self {
3039                 Self {
3040                         inner: if <*mut nativeUnsignedChannelAnnouncement>::is_null(self.inner) { std::ptr::null_mut() } else {
3041                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3042                         is_owned: true,
3043                 }
3044         }
3045 }
3046 #[allow(unused)]
3047 /// Used only if an object of this type is returned as a trait impl by a method
3048 pub(crate) extern "C" fn UnsignedChannelAnnouncement_clone_void(this_ptr: *const c_void) -> *mut c_void {
3049         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeUnsignedChannelAnnouncement)).clone() })) as *mut c_void
3050 }
3051 #[no_mangle]
3052 /// Creates a copy of the UnsignedChannelAnnouncement
3053 pub extern "C" fn UnsignedChannelAnnouncement_clone(orig: &UnsignedChannelAnnouncement) -> UnsignedChannelAnnouncement {
3054         orig.clone()
3055 }
3056
3057 use lightning::ln::msgs::ChannelAnnouncement as nativeChannelAnnouncementImport;
3058 type nativeChannelAnnouncement = nativeChannelAnnouncementImport;
3059
3060 /// A channel_announcement message to be sent or received from a peer
3061 #[must_use]
3062 #[repr(C)]
3063 pub struct ChannelAnnouncement {
3064         /// A pointer to the opaque Rust object.
3065
3066         /// Nearly everywhere, inner must be non-null, however in places where
3067         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
3068         pub inner: *mut nativeChannelAnnouncement,
3069         /// Indicates that this is the only struct which contains the same pointer.
3070
3071         /// Rust functions which take ownership of an object provided via an argument require
3072         /// this to be true and invalidate the object pointed to by inner.
3073         pub is_owned: bool,
3074 }
3075
3076 impl Drop for ChannelAnnouncement {
3077         fn drop(&mut self) {
3078                 if self.is_owned && !<*mut nativeChannelAnnouncement>::is_null(self.inner) {
3079                         let _ = unsafe { Box::from_raw(self.inner) };
3080                 }
3081         }
3082 }
3083 /// Frees any resources used by the ChannelAnnouncement, if is_owned is set and inner is non-NULL.
3084 #[no_mangle]
3085 pub extern "C" fn ChannelAnnouncement_free(this_obj: ChannelAnnouncement) { }
3086 #[allow(unused)]
3087 /// Used only if an object of this type is returned as a trait impl by a method
3088 extern "C" fn ChannelAnnouncement_free_void(this_ptr: *mut c_void) {
3089         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelAnnouncement); }
3090 }
3091 #[allow(unused)]
3092 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
3093 impl ChannelAnnouncement {
3094         pub(crate) fn take_inner(mut self) -> *mut nativeChannelAnnouncement {
3095                 assert!(self.is_owned);
3096                 let ret = self.inner;
3097                 self.inner = std::ptr::null_mut();
3098                 ret
3099         }
3100 }
3101 /// Authentication of the announcement by the first public node
3102 #[no_mangle]
3103 pub extern "C" fn ChannelAnnouncement_get_node_signature_1(this_ptr: &ChannelAnnouncement) -> crate::c_types::Signature {
3104         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_signature_1;
3105         crate::c_types::Signature::from_rust(&inner_val)
3106 }
3107 /// Authentication of the announcement by the first public node
3108 #[no_mangle]
3109 pub extern "C" fn ChannelAnnouncement_set_node_signature_1(this_ptr: &mut ChannelAnnouncement, mut val: crate::c_types::Signature) {
3110         unsafe { &mut *this_ptr.inner }.node_signature_1 = val.into_rust();
3111 }
3112 /// Authentication of the announcement by the second public node
3113 #[no_mangle]
3114 pub extern "C" fn ChannelAnnouncement_get_node_signature_2(this_ptr: &ChannelAnnouncement) -> crate::c_types::Signature {
3115         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_signature_2;
3116         crate::c_types::Signature::from_rust(&inner_val)
3117 }
3118 /// Authentication of the announcement by the second public node
3119 #[no_mangle]
3120 pub extern "C" fn ChannelAnnouncement_set_node_signature_2(this_ptr: &mut ChannelAnnouncement, mut val: crate::c_types::Signature) {
3121         unsafe { &mut *this_ptr.inner }.node_signature_2 = val.into_rust();
3122 }
3123 /// Proof of funding UTXO ownership by the first public node
3124 #[no_mangle]
3125 pub extern "C" fn ChannelAnnouncement_get_bitcoin_signature_1(this_ptr: &ChannelAnnouncement) -> crate::c_types::Signature {
3126         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.bitcoin_signature_1;
3127         crate::c_types::Signature::from_rust(&inner_val)
3128 }
3129 /// Proof of funding UTXO ownership by the first public node
3130 #[no_mangle]
3131 pub extern "C" fn ChannelAnnouncement_set_bitcoin_signature_1(this_ptr: &mut ChannelAnnouncement, mut val: crate::c_types::Signature) {
3132         unsafe { &mut *this_ptr.inner }.bitcoin_signature_1 = val.into_rust();
3133 }
3134 /// Proof of funding UTXO ownership by the second public node
3135 #[no_mangle]
3136 pub extern "C" fn ChannelAnnouncement_get_bitcoin_signature_2(this_ptr: &ChannelAnnouncement) -> crate::c_types::Signature {
3137         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.bitcoin_signature_2;
3138         crate::c_types::Signature::from_rust(&inner_val)
3139 }
3140 /// Proof of funding UTXO ownership by the second public node
3141 #[no_mangle]
3142 pub extern "C" fn ChannelAnnouncement_set_bitcoin_signature_2(this_ptr: &mut ChannelAnnouncement, mut val: crate::c_types::Signature) {
3143         unsafe { &mut *this_ptr.inner }.bitcoin_signature_2 = val.into_rust();
3144 }
3145 /// The actual announcement
3146 #[no_mangle]
3147 pub extern "C" fn ChannelAnnouncement_get_contents(this_ptr: &ChannelAnnouncement) -> crate::lightning::ln::msgs::UnsignedChannelAnnouncement {
3148         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.contents;
3149         crate::lightning::ln::msgs::UnsignedChannelAnnouncement { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
3150 }
3151 /// The actual announcement
3152 #[no_mangle]
3153 pub extern "C" fn ChannelAnnouncement_set_contents(this_ptr: &mut ChannelAnnouncement, mut val: crate::lightning::ln::msgs::UnsignedChannelAnnouncement) {
3154         unsafe { &mut *this_ptr.inner }.contents = *unsafe { Box::from_raw(val.take_inner()) };
3155 }
3156 /// Constructs a new ChannelAnnouncement given each field
3157 #[must_use]
3158 #[no_mangle]
3159 pub extern "C" fn ChannelAnnouncement_new(mut node_signature_1_arg: crate::c_types::Signature, mut node_signature_2_arg: crate::c_types::Signature, mut bitcoin_signature_1_arg: crate::c_types::Signature, mut bitcoin_signature_2_arg: crate::c_types::Signature, mut contents_arg: crate::lightning::ln::msgs::UnsignedChannelAnnouncement) -> ChannelAnnouncement {
3160         ChannelAnnouncement { inner: Box::into_raw(Box::new(nativeChannelAnnouncement {
3161                 node_signature_1: node_signature_1_arg.into_rust(),
3162                 node_signature_2: node_signature_2_arg.into_rust(),
3163                 bitcoin_signature_1: bitcoin_signature_1_arg.into_rust(),
3164                 bitcoin_signature_2: bitcoin_signature_2_arg.into_rust(),
3165                 contents: *unsafe { Box::from_raw(contents_arg.take_inner()) },
3166         })), is_owned: true }
3167 }
3168 impl Clone for ChannelAnnouncement {
3169         fn clone(&self) -> Self {
3170                 Self {
3171                         inner: if <*mut nativeChannelAnnouncement>::is_null(self.inner) { std::ptr::null_mut() } else {
3172                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3173                         is_owned: true,
3174                 }
3175         }
3176 }
3177 #[allow(unused)]
3178 /// Used only if an object of this type is returned as a trait impl by a method
3179 pub(crate) extern "C" fn ChannelAnnouncement_clone_void(this_ptr: *const c_void) -> *mut c_void {
3180         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelAnnouncement)).clone() })) as *mut c_void
3181 }
3182 #[no_mangle]
3183 /// Creates a copy of the ChannelAnnouncement
3184 pub extern "C" fn ChannelAnnouncement_clone(orig: &ChannelAnnouncement) -> ChannelAnnouncement {
3185         orig.clone()
3186 }
3187
3188 use lightning::ln::msgs::UnsignedChannelUpdate as nativeUnsignedChannelUpdateImport;
3189 type nativeUnsignedChannelUpdate = nativeUnsignedChannelUpdateImport;
3190
3191 /// The unsigned part of a channel_update
3192 #[must_use]
3193 #[repr(C)]
3194 pub struct UnsignedChannelUpdate {
3195         /// A pointer to the opaque Rust object.
3196
3197         /// Nearly everywhere, inner must be non-null, however in places where
3198         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
3199         pub inner: *mut nativeUnsignedChannelUpdate,
3200         /// Indicates that this is the only struct which contains the same pointer.
3201
3202         /// Rust functions which take ownership of an object provided via an argument require
3203         /// this to be true and invalidate the object pointed to by inner.
3204         pub is_owned: bool,
3205 }
3206
3207 impl Drop for UnsignedChannelUpdate {
3208         fn drop(&mut self) {
3209                 if self.is_owned && !<*mut nativeUnsignedChannelUpdate>::is_null(self.inner) {
3210                         let _ = unsafe { Box::from_raw(self.inner) };
3211                 }
3212         }
3213 }
3214 /// Frees any resources used by the UnsignedChannelUpdate, if is_owned is set and inner is non-NULL.
3215 #[no_mangle]
3216 pub extern "C" fn UnsignedChannelUpdate_free(this_obj: UnsignedChannelUpdate) { }
3217 #[allow(unused)]
3218 /// Used only if an object of this type is returned as a trait impl by a method
3219 extern "C" fn UnsignedChannelUpdate_free_void(this_ptr: *mut c_void) {
3220         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeUnsignedChannelUpdate); }
3221 }
3222 #[allow(unused)]
3223 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
3224 impl UnsignedChannelUpdate {
3225         pub(crate) fn take_inner(mut self) -> *mut nativeUnsignedChannelUpdate {
3226                 assert!(self.is_owned);
3227                 let ret = self.inner;
3228                 self.inner = std::ptr::null_mut();
3229                 ret
3230         }
3231 }
3232 /// The genesis hash of the blockchain where the channel is to be opened
3233 #[no_mangle]
3234 pub extern "C" fn UnsignedChannelUpdate_get_chain_hash(this_ptr: &UnsignedChannelUpdate) -> *const [u8; 32] {
3235         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_hash;
3236         inner_val.as_inner()
3237 }
3238 /// The genesis hash of the blockchain where the channel is to be opened
3239 #[no_mangle]
3240 pub extern "C" fn UnsignedChannelUpdate_set_chain_hash(this_ptr: &mut UnsignedChannelUpdate, mut val: crate::c_types::ThirtyTwoBytes) {
3241         unsafe { &mut *this_ptr.inner }.chain_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
3242 }
3243 /// The short channel ID
3244 #[no_mangle]
3245 pub extern "C" fn UnsignedChannelUpdate_get_short_channel_id(this_ptr: &UnsignedChannelUpdate) -> u64 {
3246         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
3247         *inner_val
3248 }
3249 /// The short channel ID
3250 #[no_mangle]
3251 pub extern "C" fn UnsignedChannelUpdate_set_short_channel_id(this_ptr: &mut UnsignedChannelUpdate, mut val: u64) {
3252         unsafe { &mut *this_ptr.inner }.short_channel_id = val;
3253 }
3254 /// A strictly monotonic announcement counter, with gaps allowed, specific to this channel
3255 #[no_mangle]
3256 pub extern "C" fn UnsignedChannelUpdate_get_timestamp(this_ptr: &UnsignedChannelUpdate) -> u32 {
3257         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.timestamp;
3258         *inner_val
3259 }
3260 /// A strictly monotonic announcement counter, with gaps allowed, specific to this channel
3261 #[no_mangle]
3262 pub extern "C" fn UnsignedChannelUpdate_set_timestamp(this_ptr: &mut UnsignedChannelUpdate, mut val: u32) {
3263         unsafe { &mut *this_ptr.inner }.timestamp = val;
3264 }
3265 /// Channel flags
3266 #[no_mangle]
3267 pub extern "C" fn UnsignedChannelUpdate_get_flags(this_ptr: &UnsignedChannelUpdate) -> u8 {
3268         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.flags;
3269         *inner_val
3270 }
3271 /// Channel flags
3272 #[no_mangle]
3273 pub extern "C" fn UnsignedChannelUpdate_set_flags(this_ptr: &mut UnsignedChannelUpdate, mut val: u8) {
3274         unsafe { &mut *this_ptr.inner }.flags = val;
3275 }
3276 /// The number of blocks such that if:
3277 /// `incoming_htlc.cltv_expiry < outgoing_htlc.cltv_expiry + cltv_expiry_delta`
3278 /// then we need to fail the HTLC backwards. When forwarding an HTLC, cltv_expiry_delta determines
3279 /// the outgoing HTLC's minimum cltv_expiry value -- so, if an incoming HTLC comes in with a
3280 /// cltv_expiry of 100000, and the node we're forwarding to has a cltv_expiry_delta value of 10,
3281 /// then we'll check that the outgoing HTLC's cltv_expiry value is at least 100010 before
3282 /// forwarding. Note that the HTLC sender is the one who originally sets this value when
3283 /// constructing the route.
3284 #[no_mangle]
3285 pub extern "C" fn UnsignedChannelUpdate_get_cltv_expiry_delta(this_ptr: &UnsignedChannelUpdate) -> u16 {
3286         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.cltv_expiry_delta;
3287         *inner_val
3288 }
3289 /// The number of blocks such that if:
3290 /// `incoming_htlc.cltv_expiry < outgoing_htlc.cltv_expiry + cltv_expiry_delta`
3291 /// then we need to fail the HTLC backwards. When forwarding an HTLC, cltv_expiry_delta determines
3292 /// the outgoing HTLC's minimum cltv_expiry value -- so, if an incoming HTLC comes in with a
3293 /// cltv_expiry of 100000, and the node we're forwarding to has a cltv_expiry_delta value of 10,
3294 /// then we'll check that the outgoing HTLC's cltv_expiry value is at least 100010 before
3295 /// forwarding. Note that the HTLC sender is the one who originally sets this value when
3296 /// constructing the route.
3297 #[no_mangle]
3298 pub extern "C" fn UnsignedChannelUpdate_set_cltv_expiry_delta(this_ptr: &mut UnsignedChannelUpdate, mut val: u16) {
3299         unsafe { &mut *this_ptr.inner }.cltv_expiry_delta = val;
3300 }
3301 /// The minimum HTLC size incoming to sender, in milli-satoshi
3302 #[no_mangle]
3303 pub extern "C" fn UnsignedChannelUpdate_get_htlc_minimum_msat(this_ptr: &UnsignedChannelUpdate) -> u64 {
3304         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_minimum_msat;
3305         *inner_val
3306 }
3307 /// The minimum HTLC size incoming to sender, in milli-satoshi
3308 #[no_mangle]
3309 pub extern "C" fn UnsignedChannelUpdate_set_htlc_minimum_msat(this_ptr: &mut UnsignedChannelUpdate, mut val: u64) {
3310         unsafe { &mut *this_ptr.inner }.htlc_minimum_msat = val;
3311 }
3312 /// The base HTLC fee charged by sender, in milli-satoshi
3313 #[no_mangle]
3314 pub extern "C" fn UnsignedChannelUpdate_get_fee_base_msat(this_ptr: &UnsignedChannelUpdate) -> u32 {
3315         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_base_msat;
3316         *inner_val
3317 }
3318 /// The base HTLC fee charged by sender, in milli-satoshi
3319 #[no_mangle]
3320 pub extern "C" fn UnsignedChannelUpdate_set_fee_base_msat(this_ptr: &mut UnsignedChannelUpdate, mut val: u32) {
3321         unsafe { &mut *this_ptr.inner }.fee_base_msat = val;
3322 }
3323 /// The amount to fee multiplier, in micro-satoshi
3324 #[no_mangle]
3325 pub extern "C" fn UnsignedChannelUpdate_get_fee_proportional_millionths(this_ptr: &UnsignedChannelUpdate) -> u32 {
3326         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_proportional_millionths;
3327         *inner_val
3328 }
3329 /// The amount to fee multiplier, in micro-satoshi
3330 #[no_mangle]
3331 pub extern "C" fn UnsignedChannelUpdate_set_fee_proportional_millionths(this_ptr: &mut UnsignedChannelUpdate, mut val: u32) {
3332         unsafe { &mut *this_ptr.inner }.fee_proportional_millionths = val;
3333 }
3334 impl Clone for UnsignedChannelUpdate {
3335         fn clone(&self) -> Self {
3336                 Self {
3337                         inner: if <*mut nativeUnsignedChannelUpdate>::is_null(self.inner) { std::ptr::null_mut() } else {
3338                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3339                         is_owned: true,
3340                 }
3341         }
3342 }
3343 #[allow(unused)]
3344 /// Used only if an object of this type is returned as a trait impl by a method
3345 pub(crate) extern "C" fn UnsignedChannelUpdate_clone_void(this_ptr: *const c_void) -> *mut c_void {
3346         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeUnsignedChannelUpdate)).clone() })) as *mut c_void
3347 }
3348 #[no_mangle]
3349 /// Creates a copy of the UnsignedChannelUpdate
3350 pub extern "C" fn UnsignedChannelUpdate_clone(orig: &UnsignedChannelUpdate) -> UnsignedChannelUpdate {
3351         orig.clone()
3352 }
3353
3354 use lightning::ln::msgs::ChannelUpdate as nativeChannelUpdateImport;
3355 type nativeChannelUpdate = nativeChannelUpdateImport;
3356
3357 /// A channel_update message to be sent or received from a peer
3358 #[must_use]
3359 #[repr(C)]
3360 pub struct ChannelUpdate {
3361         /// A pointer to the opaque Rust object.
3362
3363         /// Nearly everywhere, inner must be non-null, however in places where
3364         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
3365         pub inner: *mut nativeChannelUpdate,
3366         /// Indicates that this is the only struct which contains the same pointer.
3367
3368         /// Rust functions which take ownership of an object provided via an argument require
3369         /// this to be true and invalidate the object pointed to by inner.
3370         pub is_owned: bool,
3371 }
3372
3373 impl Drop for ChannelUpdate {
3374         fn drop(&mut self) {
3375                 if self.is_owned && !<*mut nativeChannelUpdate>::is_null(self.inner) {
3376                         let _ = unsafe { Box::from_raw(self.inner) };
3377                 }
3378         }
3379 }
3380 /// Frees any resources used by the ChannelUpdate, if is_owned is set and inner is non-NULL.
3381 #[no_mangle]
3382 pub extern "C" fn ChannelUpdate_free(this_obj: ChannelUpdate) { }
3383 #[allow(unused)]
3384 /// Used only if an object of this type is returned as a trait impl by a method
3385 extern "C" fn ChannelUpdate_free_void(this_ptr: *mut c_void) {
3386         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelUpdate); }
3387 }
3388 #[allow(unused)]
3389 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
3390 impl ChannelUpdate {
3391         pub(crate) fn take_inner(mut self) -> *mut nativeChannelUpdate {
3392                 assert!(self.is_owned);
3393                 let ret = self.inner;
3394                 self.inner = std::ptr::null_mut();
3395                 ret
3396         }
3397 }
3398 /// A signature of the channel update
3399 #[no_mangle]
3400 pub extern "C" fn ChannelUpdate_get_signature(this_ptr: &ChannelUpdate) -> crate::c_types::Signature {
3401         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.signature;
3402         crate::c_types::Signature::from_rust(&inner_val)
3403 }
3404 /// A signature of the channel update
3405 #[no_mangle]
3406 pub extern "C" fn ChannelUpdate_set_signature(this_ptr: &mut ChannelUpdate, mut val: crate::c_types::Signature) {
3407         unsafe { &mut *this_ptr.inner }.signature = val.into_rust();
3408 }
3409 /// The actual channel update
3410 #[no_mangle]
3411 pub extern "C" fn ChannelUpdate_get_contents(this_ptr: &ChannelUpdate) -> crate::lightning::ln::msgs::UnsignedChannelUpdate {
3412         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.contents;
3413         crate::lightning::ln::msgs::UnsignedChannelUpdate { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
3414 }
3415 /// The actual channel update
3416 #[no_mangle]
3417 pub extern "C" fn ChannelUpdate_set_contents(this_ptr: &mut ChannelUpdate, mut val: crate::lightning::ln::msgs::UnsignedChannelUpdate) {
3418         unsafe { &mut *this_ptr.inner }.contents = *unsafe { Box::from_raw(val.take_inner()) };
3419 }
3420 /// Constructs a new ChannelUpdate given each field
3421 #[must_use]
3422 #[no_mangle]
3423 pub extern "C" fn ChannelUpdate_new(mut signature_arg: crate::c_types::Signature, mut contents_arg: crate::lightning::ln::msgs::UnsignedChannelUpdate) -> ChannelUpdate {
3424         ChannelUpdate { inner: Box::into_raw(Box::new(nativeChannelUpdate {
3425                 signature: signature_arg.into_rust(),
3426                 contents: *unsafe { Box::from_raw(contents_arg.take_inner()) },
3427         })), is_owned: true }
3428 }
3429 impl Clone for ChannelUpdate {
3430         fn clone(&self) -> Self {
3431                 Self {
3432                         inner: if <*mut nativeChannelUpdate>::is_null(self.inner) { std::ptr::null_mut() } else {
3433                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3434                         is_owned: true,
3435                 }
3436         }
3437 }
3438 #[allow(unused)]
3439 /// Used only if an object of this type is returned as a trait impl by a method
3440 pub(crate) extern "C" fn ChannelUpdate_clone_void(this_ptr: *const c_void) -> *mut c_void {
3441         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelUpdate)).clone() })) as *mut c_void
3442 }
3443 #[no_mangle]
3444 /// Creates a copy of the ChannelUpdate
3445 pub extern "C" fn ChannelUpdate_clone(orig: &ChannelUpdate) -> ChannelUpdate {
3446         orig.clone()
3447 }
3448
3449 use lightning::ln::msgs::QueryChannelRange as nativeQueryChannelRangeImport;
3450 type nativeQueryChannelRange = nativeQueryChannelRangeImport;
3451
3452 /// A query_channel_range message is used to query a peer for channel
3453 /// UTXOs in a range of blocks. The recipient of a query makes a best
3454 /// effort to reply to the query using one or more reply_channel_range
3455 /// messages.
3456 #[must_use]
3457 #[repr(C)]
3458 pub struct QueryChannelRange {
3459         /// A pointer to the opaque Rust object.
3460
3461         /// Nearly everywhere, inner must be non-null, however in places where
3462         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
3463         pub inner: *mut nativeQueryChannelRange,
3464         /// Indicates that this is the only struct which contains the same pointer.
3465
3466         /// Rust functions which take ownership of an object provided via an argument require
3467         /// this to be true and invalidate the object pointed to by inner.
3468         pub is_owned: bool,
3469 }
3470
3471 impl Drop for QueryChannelRange {
3472         fn drop(&mut self) {
3473                 if self.is_owned && !<*mut nativeQueryChannelRange>::is_null(self.inner) {
3474                         let _ = unsafe { Box::from_raw(self.inner) };
3475                 }
3476         }
3477 }
3478 /// Frees any resources used by the QueryChannelRange, if is_owned is set and inner is non-NULL.
3479 #[no_mangle]
3480 pub extern "C" fn QueryChannelRange_free(this_obj: QueryChannelRange) { }
3481 #[allow(unused)]
3482 /// Used only if an object of this type is returned as a trait impl by a method
3483 extern "C" fn QueryChannelRange_free_void(this_ptr: *mut c_void) {
3484         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeQueryChannelRange); }
3485 }
3486 #[allow(unused)]
3487 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
3488 impl QueryChannelRange {
3489         pub(crate) fn take_inner(mut self) -> *mut nativeQueryChannelRange {
3490                 assert!(self.is_owned);
3491                 let ret = self.inner;
3492                 self.inner = std::ptr::null_mut();
3493                 ret
3494         }
3495 }
3496 /// The genesis hash of the blockchain being queried
3497 #[no_mangle]
3498 pub extern "C" fn QueryChannelRange_get_chain_hash(this_ptr: &QueryChannelRange) -> *const [u8; 32] {
3499         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_hash;
3500         inner_val.as_inner()
3501 }
3502 /// The genesis hash of the blockchain being queried
3503 #[no_mangle]
3504 pub extern "C" fn QueryChannelRange_set_chain_hash(this_ptr: &mut QueryChannelRange, mut val: crate::c_types::ThirtyTwoBytes) {
3505         unsafe { &mut *this_ptr.inner }.chain_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
3506 }
3507 /// The height of the first block for the channel UTXOs being queried
3508 #[no_mangle]
3509 pub extern "C" fn QueryChannelRange_get_first_blocknum(this_ptr: &QueryChannelRange) -> u32 {
3510         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.first_blocknum;
3511         *inner_val
3512 }
3513 /// The height of the first block for the channel UTXOs being queried
3514 #[no_mangle]
3515 pub extern "C" fn QueryChannelRange_set_first_blocknum(this_ptr: &mut QueryChannelRange, mut val: u32) {
3516         unsafe { &mut *this_ptr.inner }.first_blocknum = val;
3517 }
3518 /// The number of blocks to include in the query results
3519 #[no_mangle]
3520 pub extern "C" fn QueryChannelRange_get_number_of_blocks(this_ptr: &QueryChannelRange) -> u32 {
3521         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.number_of_blocks;
3522         *inner_val
3523 }
3524 /// The number of blocks to include in the query results
3525 #[no_mangle]
3526 pub extern "C" fn QueryChannelRange_set_number_of_blocks(this_ptr: &mut QueryChannelRange, mut val: u32) {
3527         unsafe { &mut *this_ptr.inner }.number_of_blocks = val;
3528 }
3529 /// Constructs a new QueryChannelRange given each field
3530 #[must_use]
3531 #[no_mangle]
3532 pub extern "C" fn QueryChannelRange_new(mut chain_hash_arg: crate::c_types::ThirtyTwoBytes, mut first_blocknum_arg: u32, mut number_of_blocks_arg: u32) -> QueryChannelRange {
3533         QueryChannelRange { inner: Box::into_raw(Box::new(nativeQueryChannelRange {
3534                 chain_hash: ::bitcoin::hash_types::BlockHash::from_slice(&chain_hash_arg.data[..]).unwrap(),
3535                 first_blocknum: first_blocknum_arg,
3536                 number_of_blocks: number_of_blocks_arg,
3537         })), is_owned: true }
3538 }
3539 impl Clone for QueryChannelRange {
3540         fn clone(&self) -> Self {
3541                 Self {
3542                         inner: if <*mut nativeQueryChannelRange>::is_null(self.inner) { std::ptr::null_mut() } else {
3543                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3544                         is_owned: true,
3545                 }
3546         }
3547 }
3548 #[allow(unused)]
3549 /// Used only if an object of this type is returned as a trait impl by a method
3550 pub(crate) extern "C" fn QueryChannelRange_clone_void(this_ptr: *const c_void) -> *mut c_void {
3551         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeQueryChannelRange)).clone() })) as *mut c_void
3552 }
3553 #[no_mangle]
3554 /// Creates a copy of the QueryChannelRange
3555 pub extern "C" fn QueryChannelRange_clone(orig: &QueryChannelRange) -> QueryChannelRange {
3556         orig.clone()
3557 }
3558
3559 use lightning::ln::msgs::ReplyChannelRange as nativeReplyChannelRangeImport;
3560 type nativeReplyChannelRange = nativeReplyChannelRangeImport;
3561
3562 /// A reply_channel_range message is a reply to a query_channel_range
3563 /// message. Multiple reply_channel_range messages can be sent in reply
3564 /// to a single query_channel_range message. The query recipient makes a
3565 /// best effort to respond based on their local network view which may
3566 /// not be a perfect view of the network. The short_channel_ids in the
3567 /// reply are encoded. We only support encoding_type=0 uncompressed
3568 /// serialization and do not support encoding_type=1 zlib serialization.
3569 #[must_use]
3570 #[repr(C)]
3571 pub struct ReplyChannelRange {
3572         /// A pointer to the opaque Rust object.
3573
3574         /// Nearly everywhere, inner must be non-null, however in places where
3575         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
3576         pub inner: *mut nativeReplyChannelRange,
3577         /// Indicates that this is the only struct which contains the same pointer.
3578
3579         /// Rust functions which take ownership of an object provided via an argument require
3580         /// this to be true and invalidate the object pointed to by inner.
3581         pub is_owned: bool,
3582 }
3583
3584 impl Drop for ReplyChannelRange {
3585         fn drop(&mut self) {
3586                 if self.is_owned && !<*mut nativeReplyChannelRange>::is_null(self.inner) {
3587                         let _ = unsafe { Box::from_raw(self.inner) };
3588                 }
3589         }
3590 }
3591 /// Frees any resources used by the ReplyChannelRange, if is_owned is set and inner is non-NULL.
3592 #[no_mangle]
3593 pub extern "C" fn ReplyChannelRange_free(this_obj: ReplyChannelRange) { }
3594 #[allow(unused)]
3595 /// Used only if an object of this type is returned as a trait impl by a method
3596 extern "C" fn ReplyChannelRange_free_void(this_ptr: *mut c_void) {
3597         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeReplyChannelRange); }
3598 }
3599 #[allow(unused)]
3600 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
3601 impl ReplyChannelRange {
3602         pub(crate) fn take_inner(mut self) -> *mut nativeReplyChannelRange {
3603                 assert!(self.is_owned);
3604                 let ret = self.inner;
3605                 self.inner = std::ptr::null_mut();
3606                 ret
3607         }
3608 }
3609 /// The genesis hash of the blockchain being queried
3610 #[no_mangle]
3611 pub extern "C" fn ReplyChannelRange_get_chain_hash(this_ptr: &ReplyChannelRange) -> *const [u8; 32] {
3612         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_hash;
3613         inner_val.as_inner()
3614 }
3615 /// The genesis hash of the blockchain being queried
3616 #[no_mangle]
3617 pub extern "C" fn ReplyChannelRange_set_chain_hash(this_ptr: &mut ReplyChannelRange, mut val: crate::c_types::ThirtyTwoBytes) {
3618         unsafe { &mut *this_ptr.inner }.chain_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
3619 }
3620 /// The height of the first block in the range of the reply
3621 #[no_mangle]
3622 pub extern "C" fn ReplyChannelRange_get_first_blocknum(this_ptr: &ReplyChannelRange) -> u32 {
3623         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.first_blocknum;
3624         *inner_val
3625 }
3626 /// The height of the first block in the range of the reply
3627 #[no_mangle]
3628 pub extern "C" fn ReplyChannelRange_set_first_blocknum(this_ptr: &mut ReplyChannelRange, mut val: u32) {
3629         unsafe { &mut *this_ptr.inner }.first_blocknum = val;
3630 }
3631 /// The number of blocks included in the range of the reply
3632 #[no_mangle]
3633 pub extern "C" fn ReplyChannelRange_get_number_of_blocks(this_ptr: &ReplyChannelRange) -> u32 {
3634         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.number_of_blocks;
3635         *inner_val
3636 }
3637 /// The number of blocks included in the range of the reply
3638 #[no_mangle]
3639 pub extern "C" fn ReplyChannelRange_set_number_of_blocks(this_ptr: &mut ReplyChannelRange, mut val: u32) {
3640         unsafe { &mut *this_ptr.inner }.number_of_blocks = val;
3641 }
3642 /// True when this is the final reply for a query
3643 #[no_mangle]
3644 pub extern "C" fn ReplyChannelRange_get_sync_complete(this_ptr: &ReplyChannelRange) -> bool {
3645         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.sync_complete;
3646         *inner_val
3647 }
3648 /// True when this is the final reply for a query
3649 #[no_mangle]
3650 pub extern "C" fn ReplyChannelRange_set_sync_complete(this_ptr: &mut ReplyChannelRange, mut val: bool) {
3651         unsafe { &mut *this_ptr.inner }.sync_complete = val;
3652 }
3653 /// The short_channel_ids in the channel range
3654 #[no_mangle]
3655 pub extern "C" fn ReplyChannelRange_set_short_channel_ids(this_ptr: &mut ReplyChannelRange, mut val: crate::c_types::derived::CVec_u64Z) {
3656         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item }); };
3657         unsafe { &mut *this_ptr.inner }.short_channel_ids = local_val;
3658 }
3659 /// Constructs a new ReplyChannelRange given each field
3660 #[must_use]
3661 #[no_mangle]
3662 pub extern "C" fn ReplyChannelRange_new(mut chain_hash_arg: crate::c_types::ThirtyTwoBytes, mut first_blocknum_arg: u32, mut number_of_blocks_arg: u32, mut sync_complete_arg: bool, mut short_channel_ids_arg: crate::c_types::derived::CVec_u64Z) -> ReplyChannelRange {
3663         let mut local_short_channel_ids_arg = Vec::new(); for mut item in short_channel_ids_arg.into_rust().drain(..) { local_short_channel_ids_arg.push( { item }); };
3664         ReplyChannelRange { inner: Box::into_raw(Box::new(nativeReplyChannelRange {
3665                 chain_hash: ::bitcoin::hash_types::BlockHash::from_slice(&chain_hash_arg.data[..]).unwrap(),
3666                 first_blocknum: first_blocknum_arg,
3667                 number_of_blocks: number_of_blocks_arg,
3668                 sync_complete: sync_complete_arg,
3669                 short_channel_ids: local_short_channel_ids_arg,
3670         })), is_owned: true }
3671 }
3672 impl Clone for ReplyChannelRange {
3673         fn clone(&self) -> Self {
3674                 Self {
3675                         inner: if <*mut nativeReplyChannelRange>::is_null(self.inner) { std::ptr::null_mut() } else {
3676                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3677                         is_owned: true,
3678                 }
3679         }
3680 }
3681 #[allow(unused)]
3682 /// Used only if an object of this type is returned as a trait impl by a method
3683 pub(crate) extern "C" fn ReplyChannelRange_clone_void(this_ptr: *const c_void) -> *mut c_void {
3684         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeReplyChannelRange)).clone() })) as *mut c_void
3685 }
3686 #[no_mangle]
3687 /// Creates a copy of the ReplyChannelRange
3688 pub extern "C" fn ReplyChannelRange_clone(orig: &ReplyChannelRange) -> ReplyChannelRange {
3689         orig.clone()
3690 }
3691
3692 use lightning::ln::msgs::QueryShortChannelIds as nativeQueryShortChannelIdsImport;
3693 type nativeQueryShortChannelIds = nativeQueryShortChannelIdsImport;
3694
3695 /// A query_short_channel_ids message is used to query a peer for
3696 /// routing gossip messages related to one or more short_channel_ids.
3697 /// The query recipient will reply with the latest, if available,
3698 /// channel_announcement, channel_update and node_announcement messages
3699 /// it maintains for the requested short_channel_ids followed by a
3700 /// reply_short_channel_ids_end message. The short_channel_ids sent in
3701 /// this query are encoded. We only support encoding_type=0 uncompressed
3702 /// serialization and do not support encoding_type=1 zlib serialization.
3703 #[must_use]
3704 #[repr(C)]
3705 pub struct QueryShortChannelIds {
3706         /// A pointer to the opaque Rust object.
3707
3708         /// Nearly everywhere, inner must be non-null, however in places where
3709         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
3710         pub inner: *mut nativeQueryShortChannelIds,
3711         /// Indicates that this is the only struct which contains the same pointer.
3712
3713         /// Rust functions which take ownership of an object provided via an argument require
3714         /// this to be true and invalidate the object pointed to by inner.
3715         pub is_owned: bool,
3716 }
3717
3718 impl Drop for QueryShortChannelIds {
3719         fn drop(&mut self) {
3720                 if self.is_owned && !<*mut nativeQueryShortChannelIds>::is_null(self.inner) {
3721                         let _ = unsafe { Box::from_raw(self.inner) };
3722                 }
3723         }
3724 }
3725 /// Frees any resources used by the QueryShortChannelIds, if is_owned is set and inner is non-NULL.
3726 #[no_mangle]
3727 pub extern "C" fn QueryShortChannelIds_free(this_obj: QueryShortChannelIds) { }
3728 #[allow(unused)]
3729 /// Used only if an object of this type is returned as a trait impl by a method
3730 extern "C" fn QueryShortChannelIds_free_void(this_ptr: *mut c_void) {
3731         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeQueryShortChannelIds); }
3732 }
3733 #[allow(unused)]
3734 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
3735 impl QueryShortChannelIds {
3736         pub(crate) fn take_inner(mut self) -> *mut nativeQueryShortChannelIds {
3737                 assert!(self.is_owned);
3738                 let ret = self.inner;
3739                 self.inner = std::ptr::null_mut();
3740                 ret
3741         }
3742 }
3743 /// The genesis hash of the blockchain being queried
3744 #[no_mangle]
3745 pub extern "C" fn QueryShortChannelIds_get_chain_hash(this_ptr: &QueryShortChannelIds) -> *const [u8; 32] {
3746         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_hash;
3747         inner_val.as_inner()
3748 }
3749 /// The genesis hash of the blockchain being queried
3750 #[no_mangle]
3751 pub extern "C" fn QueryShortChannelIds_set_chain_hash(this_ptr: &mut QueryShortChannelIds, mut val: crate::c_types::ThirtyTwoBytes) {
3752         unsafe { &mut *this_ptr.inner }.chain_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
3753 }
3754 /// The short_channel_ids that are being queried
3755 #[no_mangle]
3756 pub extern "C" fn QueryShortChannelIds_set_short_channel_ids(this_ptr: &mut QueryShortChannelIds, mut val: crate::c_types::derived::CVec_u64Z) {
3757         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item }); };
3758         unsafe { &mut *this_ptr.inner }.short_channel_ids = local_val;
3759 }
3760 /// Constructs a new QueryShortChannelIds given each field
3761 #[must_use]
3762 #[no_mangle]
3763 pub extern "C" fn QueryShortChannelIds_new(mut chain_hash_arg: crate::c_types::ThirtyTwoBytes, mut short_channel_ids_arg: crate::c_types::derived::CVec_u64Z) -> QueryShortChannelIds {
3764         let mut local_short_channel_ids_arg = Vec::new(); for mut item in short_channel_ids_arg.into_rust().drain(..) { local_short_channel_ids_arg.push( { item }); };
3765         QueryShortChannelIds { inner: Box::into_raw(Box::new(nativeQueryShortChannelIds {
3766                 chain_hash: ::bitcoin::hash_types::BlockHash::from_slice(&chain_hash_arg.data[..]).unwrap(),
3767                 short_channel_ids: local_short_channel_ids_arg,
3768         })), is_owned: true }
3769 }
3770 impl Clone for QueryShortChannelIds {
3771         fn clone(&self) -> Self {
3772                 Self {
3773                         inner: if <*mut nativeQueryShortChannelIds>::is_null(self.inner) { std::ptr::null_mut() } else {
3774                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3775                         is_owned: true,
3776                 }
3777         }
3778 }
3779 #[allow(unused)]
3780 /// Used only if an object of this type is returned as a trait impl by a method
3781 pub(crate) extern "C" fn QueryShortChannelIds_clone_void(this_ptr: *const c_void) -> *mut c_void {
3782         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeQueryShortChannelIds)).clone() })) as *mut c_void
3783 }
3784 #[no_mangle]
3785 /// Creates a copy of the QueryShortChannelIds
3786 pub extern "C" fn QueryShortChannelIds_clone(orig: &QueryShortChannelIds) -> QueryShortChannelIds {
3787         orig.clone()
3788 }
3789
3790 use lightning::ln::msgs::ReplyShortChannelIdsEnd as nativeReplyShortChannelIdsEndImport;
3791 type nativeReplyShortChannelIdsEnd = nativeReplyShortChannelIdsEndImport;
3792
3793 /// A reply_short_channel_ids_end message is sent as a reply to a
3794 /// query_short_channel_ids message. The query recipient makes a best
3795 /// effort to respond based on their local network view which may not be
3796 /// a perfect view of the network.
3797 #[must_use]
3798 #[repr(C)]
3799 pub struct ReplyShortChannelIdsEnd {
3800         /// A pointer to the opaque Rust object.
3801
3802         /// Nearly everywhere, inner must be non-null, however in places where
3803         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
3804         pub inner: *mut nativeReplyShortChannelIdsEnd,
3805         /// Indicates that this is the only struct which contains the same pointer.
3806
3807         /// Rust functions which take ownership of an object provided via an argument require
3808         /// this to be true and invalidate the object pointed to by inner.
3809         pub is_owned: bool,
3810 }
3811
3812 impl Drop for ReplyShortChannelIdsEnd {
3813         fn drop(&mut self) {
3814                 if self.is_owned && !<*mut nativeReplyShortChannelIdsEnd>::is_null(self.inner) {
3815                         let _ = unsafe { Box::from_raw(self.inner) };
3816                 }
3817         }
3818 }
3819 /// Frees any resources used by the ReplyShortChannelIdsEnd, if is_owned is set and inner is non-NULL.
3820 #[no_mangle]
3821 pub extern "C" fn ReplyShortChannelIdsEnd_free(this_obj: ReplyShortChannelIdsEnd) { }
3822 #[allow(unused)]
3823 /// Used only if an object of this type is returned as a trait impl by a method
3824 extern "C" fn ReplyShortChannelIdsEnd_free_void(this_ptr: *mut c_void) {
3825         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeReplyShortChannelIdsEnd); }
3826 }
3827 #[allow(unused)]
3828 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
3829 impl ReplyShortChannelIdsEnd {
3830         pub(crate) fn take_inner(mut self) -> *mut nativeReplyShortChannelIdsEnd {
3831                 assert!(self.is_owned);
3832                 let ret = self.inner;
3833                 self.inner = std::ptr::null_mut();
3834                 ret
3835         }
3836 }
3837 /// The genesis hash of the blockchain that was queried
3838 #[no_mangle]
3839 pub extern "C" fn ReplyShortChannelIdsEnd_get_chain_hash(this_ptr: &ReplyShortChannelIdsEnd) -> *const [u8; 32] {
3840         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_hash;
3841         inner_val.as_inner()
3842 }
3843 /// The genesis hash of the blockchain that was queried
3844 #[no_mangle]
3845 pub extern "C" fn ReplyShortChannelIdsEnd_set_chain_hash(this_ptr: &mut ReplyShortChannelIdsEnd, mut val: crate::c_types::ThirtyTwoBytes) {
3846         unsafe { &mut *this_ptr.inner }.chain_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
3847 }
3848 /// Indicates if the query recipient maintains up-to-date channel
3849 /// information for the chain_hash
3850 #[no_mangle]
3851 pub extern "C" fn ReplyShortChannelIdsEnd_get_full_information(this_ptr: &ReplyShortChannelIdsEnd) -> bool {
3852         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.full_information;
3853         *inner_val
3854 }
3855 /// Indicates if the query recipient maintains up-to-date channel
3856 /// information for the chain_hash
3857 #[no_mangle]
3858 pub extern "C" fn ReplyShortChannelIdsEnd_set_full_information(this_ptr: &mut ReplyShortChannelIdsEnd, mut val: bool) {
3859         unsafe { &mut *this_ptr.inner }.full_information = val;
3860 }
3861 /// Constructs a new ReplyShortChannelIdsEnd given each field
3862 #[must_use]
3863 #[no_mangle]
3864 pub extern "C" fn ReplyShortChannelIdsEnd_new(mut chain_hash_arg: crate::c_types::ThirtyTwoBytes, mut full_information_arg: bool) -> ReplyShortChannelIdsEnd {
3865         ReplyShortChannelIdsEnd { inner: Box::into_raw(Box::new(nativeReplyShortChannelIdsEnd {
3866                 chain_hash: ::bitcoin::hash_types::BlockHash::from_slice(&chain_hash_arg.data[..]).unwrap(),
3867                 full_information: full_information_arg,
3868         })), is_owned: true }
3869 }
3870 impl Clone for ReplyShortChannelIdsEnd {
3871         fn clone(&self) -> Self {
3872                 Self {
3873                         inner: if <*mut nativeReplyShortChannelIdsEnd>::is_null(self.inner) { std::ptr::null_mut() } else {
3874                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3875                         is_owned: true,
3876                 }
3877         }
3878 }
3879 #[allow(unused)]
3880 /// Used only if an object of this type is returned as a trait impl by a method
3881 pub(crate) extern "C" fn ReplyShortChannelIdsEnd_clone_void(this_ptr: *const c_void) -> *mut c_void {
3882         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeReplyShortChannelIdsEnd)).clone() })) as *mut c_void
3883 }
3884 #[no_mangle]
3885 /// Creates a copy of the ReplyShortChannelIdsEnd
3886 pub extern "C" fn ReplyShortChannelIdsEnd_clone(orig: &ReplyShortChannelIdsEnd) -> ReplyShortChannelIdsEnd {
3887         orig.clone()
3888 }
3889
3890 use lightning::ln::msgs::GossipTimestampFilter as nativeGossipTimestampFilterImport;
3891 type nativeGossipTimestampFilter = nativeGossipTimestampFilterImport;
3892
3893 /// A gossip_timestamp_filter message is used by a node to request
3894 /// gossip relay for messages in the requested time range when the
3895 /// gossip_queries feature has been negotiated.
3896 #[must_use]
3897 #[repr(C)]
3898 pub struct GossipTimestampFilter {
3899         /// A pointer to the opaque Rust object.
3900
3901         /// Nearly everywhere, inner must be non-null, however in places where
3902         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
3903         pub inner: *mut nativeGossipTimestampFilter,
3904         /// Indicates that this is the only struct which contains the same pointer.
3905
3906         /// Rust functions which take ownership of an object provided via an argument require
3907         /// this to be true and invalidate the object pointed to by inner.
3908         pub is_owned: bool,
3909 }
3910
3911 impl Drop for GossipTimestampFilter {
3912         fn drop(&mut self) {
3913                 if self.is_owned && !<*mut nativeGossipTimestampFilter>::is_null(self.inner) {
3914                         let _ = unsafe { Box::from_raw(self.inner) };
3915                 }
3916         }
3917 }
3918 /// Frees any resources used by the GossipTimestampFilter, if is_owned is set and inner is non-NULL.
3919 #[no_mangle]
3920 pub extern "C" fn GossipTimestampFilter_free(this_obj: GossipTimestampFilter) { }
3921 #[allow(unused)]
3922 /// Used only if an object of this type is returned as a trait impl by a method
3923 extern "C" fn GossipTimestampFilter_free_void(this_ptr: *mut c_void) {
3924         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeGossipTimestampFilter); }
3925 }
3926 #[allow(unused)]
3927 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
3928 impl GossipTimestampFilter {
3929         pub(crate) fn take_inner(mut self) -> *mut nativeGossipTimestampFilter {
3930                 assert!(self.is_owned);
3931                 let ret = self.inner;
3932                 self.inner = std::ptr::null_mut();
3933                 ret
3934         }
3935 }
3936 /// The genesis hash of the blockchain for channel and node information
3937 #[no_mangle]
3938 pub extern "C" fn GossipTimestampFilter_get_chain_hash(this_ptr: &GossipTimestampFilter) -> *const [u8; 32] {
3939         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_hash;
3940         inner_val.as_inner()
3941 }
3942 /// The genesis hash of the blockchain for channel and node information
3943 #[no_mangle]
3944 pub extern "C" fn GossipTimestampFilter_set_chain_hash(this_ptr: &mut GossipTimestampFilter, mut val: crate::c_types::ThirtyTwoBytes) {
3945         unsafe { &mut *this_ptr.inner }.chain_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
3946 }
3947 /// The starting unix timestamp
3948 #[no_mangle]
3949 pub extern "C" fn GossipTimestampFilter_get_first_timestamp(this_ptr: &GossipTimestampFilter) -> u32 {
3950         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.first_timestamp;
3951         *inner_val
3952 }
3953 /// The starting unix timestamp
3954 #[no_mangle]
3955 pub extern "C" fn GossipTimestampFilter_set_first_timestamp(this_ptr: &mut GossipTimestampFilter, mut val: u32) {
3956         unsafe { &mut *this_ptr.inner }.first_timestamp = val;
3957 }
3958 /// The range of information in seconds
3959 #[no_mangle]
3960 pub extern "C" fn GossipTimestampFilter_get_timestamp_range(this_ptr: &GossipTimestampFilter) -> u32 {
3961         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.timestamp_range;
3962         *inner_val
3963 }
3964 /// The range of information in seconds
3965 #[no_mangle]
3966 pub extern "C" fn GossipTimestampFilter_set_timestamp_range(this_ptr: &mut GossipTimestampFilter, mut val: u32) {
3967         unsafe { &mut *this_ptr.inner }.timestamp_range = val;
3968 }
3969 /// Constructs a new GossipTimestampFilter given each field
3970 #[must_use]
3971 #[no_mangle]
3972 pub extern "C" fn GossipTimestampFilter_new(mut chain_hash_arg: crate::c_types::ThirtyTwoBytes, mut first_timestamp_arg: u32, mut timestamp_range_arg: u32) -> GossipTimestampFilter {
3973         GossipTimestampFilter { inner: Box::into_raw(Box::new(nativeGossipTimestampFilter {
3974                 chain_hash: ::bitcoin::hash_types::BlockHash::from_slice(&chain_hash_arg.data[..]).unwrap(),
3975                 first_timestamp: first_timestamp_arg,
3976                 timestamp_range: timestamp_range_arg,
3977         })), is_owned: true }
3978 }
3979 impl Clone for GossipTimestampFilter {
3980         fn clone(&self) -> Self {
3981                 Self {
3982                         inner: if <*mut nativeGossipTimestampFilter>::is_null(self.inner) { std::ptr::null_mut() } else {
3983                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
3984                         is_owned: true,
3985                 }
3986         }
3987 }
3988 #[allow(unused)]
3989 /// Used only if an object of this type is returned as a trait impl by a method
3990 pub(crate) extern "C" fn GossipTimestampFilter_clone_void(this_ptr: *const c_void) -> *mut c_void {
3991         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeGossipTimestampFilter)).clone() })) as *mut c_void
3992 }
3993 #[no_mangle]
3994 /// Creates a copy of the GossipTimestampFilter
3995 pub extern "C" fn GossipTimestampFilter_clone(orig: &GossipTimestampFilter) -> GossipTimestampFilter {
3996         orig.clone()
3997 }
3998 /// Used to put an error message in a LightningError
3999 #[must_use]
4000 #[derive(Clone)]
4001 #[repr(C)]
4002 pub enum ErrorAction {
4003         /// The peer took some action which made us think they were useless. Disconnect them.
4004         DisconnectPeer {
4005                 /// An error message which we should make an effort to send before we disconnect.
4006                 msg: crate::lightning::ln::msgs::ErrorMessage,
4007         },
4008         /// The peer did something harmless that we weren't able to process, just log and ignore
4009         IgnoreError,
4010         /// The peer did something incorrect. Tell them.
4011         SendErrorMessage {
4012                 /// The message to send.
4013                 msg: crate::lightning::ln::msgs::ErrorMessage,
4014         },
4015 }
4016 use lightning::ln::msgs::ErrorAction as nativeErrorAction;
4017 impl ErrorAction {
4018         #[allow(unused)]
4019         pub(crate) fn to_native(&self) -> nativeErrorAction {
4020                 match self {
4021                         ErrorAction::DisconnectPeer {ref msg, } => {
4022                                 let mut msg_nonref = (*msg).clone();
4023                                 let mut local_msg_nonref = if msg_nonref.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(msg_nonref.take_inner()) } }) };
4024                                 nativeErrorAction::DisconnectPeer {
4025                                         msg: local_msg_nonref,
4026                                 }
4027                         },
4028                         ErrorAction::IgnoreError => nativeErrorAction::IgnoreError,
4029                         ErrorAction::SendErrorMessage {ref msg, } => {
4030                                 let mut msg_nonref = (*msg).clone();
4031                                 nativeErrorAction::SendErrorMessage {
4032                                         msg: *unsafe { Box::from_raw(msg_nonref.take_inner()) },
4033                                 }
4034                         },
4035                 }
4036         }
4037         #[allow(unused)]
4038         pub(crate) fn into_native(self) -> nativeErrorAction {
4039                 match self {
4040                         ErrorAction::DisconnectPeer {mut msg, } => {
4041                                 let mut local_msg = if msg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(msg.take_inner()) } }) };
4042                                 nativeErrorAction::DisconnectPeer {
4043                                         msg: local_msg,
4044                                 }
4045                         },
4046                         ErrorAction::IgnoreError => nativeErrorAction::IgnoreError,
4047                         ErrorAction::SendErrorMessage {mut msg, } => {
4048                                 nativeErrorAction::SendErrorMessage {
4049                                         msg: *unsafe { Box::from_raw(msg.take_inner()) },
4050                                 }
4051                         },
4052                 }
4053         }
4054         #[allow(unused)]
4055         pub(crate) fn from_native(native: &nativeErrorAction) -> Self {
4056                 match native {
4057                         nativeErrorAction::DisconnectPeer {ref msg, } => {
4058                                 let mut msg_nonref = (*msg).clone();
4059                                 let mut local_msg_nonref = crate::lightning::ln::msgs::ErrorMessage { inner: if msg_nonref.is_none() { std::ptr::null_mut() } else {  { Box::into_raw(Box::new((msg_nonref.unwrap()))) } }, is_owned: true };
4060                                 ErrorAction::DisconnectPeer {
4061                                         msg: local_msg_nonref,
4062                                 }
4063                         },
4064                         nativeErrorAction::IgnoreError => ErrorAction::IgnoreError,
4065                         nativeErrorAction::SendErrorMessage {ref msg, } => {
4066                                 let mut msg_nonref = (*msg).clone();
4067                                 ErrorAction::SendErrorMessage {
4068                                         msg: crate::lightning::ln::msgs::ErrorMessage { inner: Box::into_raw(Box::new(msg_nonref)), is_owned: true },
4069                                 }
4070                         },
4071                 }
4072         }
4073         #[allow(unused)]
4074         pub(crate) fn native_into(native: nativeErrorAction) -> Self {
4075                 match native {
4076                         nativeErrorAction::DisconnectPeer {mut msg, } => {
4077                                 let mut local_msg = crate::lightning::ln::msgs::ErrorMessage { inner: if msg.is_none() { std::ptr::null_mut() } else {  { Box::into_raw(Box::new((msg.unwrap()))) } }, is_owned: true };
4078                                 ErrorAction::DisconnectPeer {
4079                                         msg: local_msg,
4080                                 }
4081                         },
4082                         nativeErrorAction::IgnoreError => ErrorAction::IgnoreError,
4083                         nativeErrorAction::SendErrorMessage {mut msg, } => {
4084                                 ErrorAction::SendErrorMessage {
4085                                         msg: crate::lightning::ln::msgs::ErrorMessage { inner: Box::into_raw(Box::new(msg)), is_owned: true },
4086                                 }
4087                         },
4088                 }
4089         }
4090 }
4091 /// Frees any resources used by the ErrorAction
4092 #[no_mangle]
4093 pub extern "C" fn ErrorAction_free(this_ptr: ErrorAction) { }
4094 /// Creates a copy of the ErrorAction
4095 #[no_mangle]
4096 pub extern "C" fn ErrorAction_clone(orig: &ErrorAction) -> ErrorAction {
4097         orig.clone()
4098 }
4099
4100 use lightning::ln::msgs::LightningError as nativeLightningErrorImport;
4101 type nativeLightningError = nativeLightningErrorImport;
4102
4103 /// An Err type for failure to process messages.
4104 #[must_use]
4105 #[repr(C)]
4106 pub struct LightningError {
4107         /// A pointer to the opaque Rust object.
4108
4109         /// Nearly everywhere, inner must be non-null, however in places where
4110         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
4111         pub inner: *mut nativeLightningError,
4112         /// Indicates that this is the only struct which contains the same pointer.
4113
4114         /// Rust functions which take ownership of an object provided via an argument require
4115         /// this to be true and invalidate the object pointed to by inner.
4116         pub is_owned: bool,
4117 }
4118
4119 impl Drop for LightningError {
4120         fn drop(&mut self) {
4121                 if self.is_owned && !<*mut nativeLightningError>::is_null(self.inner) {
4122                         let _ = unsafe { Box::from_raw(self.inner) };
4123                 }
4124         }
4125 }
4126 /// Frees any resources used by the LightningError, if is_owned is set and inner is non-NULL.
4127 #[no_mangle]
4128 pub extern "C" fn LightningError_free(this_obj: LightningError) { }
4129 #[allow(unused)]
4130 /// Used only if an object of this type is returned as a trait impl by a method
4131 extern "C" fn LightningError_free_void(this_ptr: *mut c_void) {
4132         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeLightningError); }
4133 }
4134 #[allow(unused)]
4135 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
4136 impl LightningError {
4137         pub(crate) fn take_inner(mut self) -> *mut nativeLightningError {
4138                 assert!(self.is_owned);
4139                 let ret = self.inner;
4140                 self.inner = std::ptr::null_mut();
4141                 ret
4142         }
4143 }
4144 /// A human-readable message describing the error
4145 #[no_mangle]
4146 pub extern "C" fn LightningError_get_err(this_ptr: &LightningError) -> crate::c_types::Str {
4147         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.err;
4148         inner_val.as_str().into()
4149 }
4150 /// A human-readable message describing the error
4151 #[no_mangle]
4152 pub extern "C" fn LightningError_set_err(this_ptr: &mut LightningError, mut val: crate::c_types::derived::CVec_u8Z) {
4153         unsafe { &mut *this_ptr.inner }.err = String::from_utf8(val.into_rust()).unwrap();
4154 }
4155 /// The action which should be taken against the offending peer.
4156 #[no_mangle]
4157 pub extern "C" fn LightningError_get_action(this_ptr: &LightningError) -> crate::lightning::ln::msgs::ErrorAction {
4158         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.action;
4159         crate::lightning::ln::msgs::ErrorAction::from_native(inner_val)
4160 }
4161 /// The action which should be taken against the offending peer.
4162 #[no_mangle]
4163 pub extern "C" fn LightningError_set_action(this_ptr: &mut LightningError, mut val: crate::lightning::ln::msgs::ErrorAction) {
4164         unsafe { &mut *this_ptr.inner }.action = val.into_native();
4165 }
4166 /// Constructs a new LightningError given each field
4167 #[must_use]
4168 #[no_mangle]
4169 pub extern "C" fn LightningError_new(mut err_arg: crate::c_types::derived::CVec_u8Z, mut action_arg: crate::lightning::ln::msgs::ErrorAction) -> LightningError {
4170         LightningError { inner: Box::into_raw(Box::new(nativeLightningError {
4171                 err: String::from_utf8(err_arg.into_rust()).unwrap(),
4172                 action: action_arg.into_native(),
4173         })), is_owned: true }
4174 }
4175 impl Clone for LightningError {
4176         fn clone(&self) -> Self {
4177                 Self {
4178                         inner: if <*mut nativeLightningError>::is_null(self.inner) { std::ptr::null_mut() } else {
4179                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
4180                         is_owned: true,
4181                 }
4182         }
4183 }
4184 #[allow(unused)]
4185 /// Used only if an object of this type is returned as a trait impl by a method
4186 pub(crate) extern "C" fn LightningError_clone_void(this_ptr: *const c_void) -> *mut c_void {
4187         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeLightningError)).clone() })) as *mut c_void
4188 }
4189 #[no_mangle]
4190 /// Creates a copy of the LightningError
4191 pub extern "C" fn LightningError_clone(orig: &LightningError) -> LightningError {
4192         orig.clone()
4193 }
4194
4195 use lightning::ln::msgs::CommitmentUpdate as nativeCommitmentUpdateImport;
4196 type nativeCommitmentUpdate = nativeCommitmentUpdateImport;
4197
4198 /// Struct used to return values from revoke_and_ack messages, containing a bunch of commitment
4199 /// transaction updates if they were pending.
4200 #[must_use]
4201 #[repr(C)]
4202 pub struct CommitmentUpdate {
4203         /// A pointer to the opaque Rust object.
4204
4205         /// Nearly everywhere, inner must be non-null, however in places where
4206         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
4207         pub inner: *mut nativeCommitmentUpdate,
4208         /// Indicates that this is the only struct which contains the same pointer.
4209
4210         /// Rust functions which take ownership of an object provided via an argument require
4211         /// this to be true and invalidate the object pointed to by inner.
4212         pub is_owned: bool,
4213 }
4214
4215 impl Drop for CommitmentUpdate {
4216         fn drop(&mut self) {
4217                 if self.is_owned && !<*mut nativeCommitmentUpdate>::is_null(self.inner) {
4218                         let _ = unsafe { Box::from_raw(self.inner) };
4219                 }
4220         }
4221 }
4222 /// Frees any resources used by the CommitmentUpdate, if is_owned is set and inner is non-NULL.
4223 #[no_mangle]
4224 pub extern "C" fn CommitmentUpdate_free(this_obj: CommitmentUpdate) { }
4225 #[allow(unused)]
4226 /// Used only if an object of this type is returned as a trait impl by a method
4227 extern "C" fn CommitmentUpdate_free_void(this_ptr: *mut c_void) {
4228         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeCommitmentUpdate); }
4229 }
4230 #[allow(unused)]
4231 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
4232 impl CommitmentUpdate {
4233         pub(crate) fn take_inner(mut self) -> *mut nativeCommitmentUpdate {
4234                 assert!(self.is_owned);
4235                 let ret = self.inner;
4236                 self.inner = std::ptr::null_mut();
4237                 ret
4238         }
4239 }
4240 /// update_add_htlc messages which should be sent
4241 #[no_mangle]
4242 pub extern "C" fn CommitmentUpdate_set_update_add_htlcs(this_ptr: &mut CommitmentUpdate, mut val: crate::c_types::derived::CVec_UpdateAddHTLCZ) {
4243         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4244         unsafe { &mut *this_ptr.inner }.update_add_htlcs = local_val;
4245 }
4246 /// update_fulfill_htlc messages which should be sent
4247 #[no_mangle]
4248 pub extern "C" fn CommitmentUpdate_set_update_fulfill_htlcs(this_ptr: &mut CommitmentUpdate, mut val: crate::c_types::derived::CVec_UpdateFulfillHTLCZ) {
4249         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4250         unsafe { &mut *this_ptr.inner }.update_fulfill_htlcs = local_val;
4251 }
4252 /// update_fail_htlc messages which should be sent
4253 #[no_mangle]
4254 pub extern "C" fn CommitmentUpdate_set_update_fail_htlcs(this_ptr: &mut CommitmentUpdate, mut val: crate::c_types::derived::CVec_UpdateFailHTLCZ) {
4255         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4256         unsafe { &mut *this_ptr.inner }.update_fail_htlcs = local_val;
4257 }
4258 /// update_fail_malformed_htlc messages which should be sent
4259 #[no_mangle]
4260 pub extern "C" fn CommitmentUpdate_set_update_fail_malformed_htlcs(this_ptr: &mut CommitmentUpdate, mut val: crate::c_types::derived::CVec_UpdateFailMalformedHTLCZ) {
4261         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4262         unsafe { &mut *this_ptr.inner }.update_fail_malformed_htlcs = local_val;
4263 }
4264 /// An update_fee message which should be sent
4265 #[no_mangle]
4266 pub extern "C" fn CommitmentUpdate_get_update_fee(this_ptr: &CommitmentUpdate) -> crate::lightning::ln::msgs::UpdateFee {
4267         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.update_fee;
4268         let mut local_inner_val = crate::lightning::ln::msgs::UpdateFee { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
4269         local_inner_val
4270 }
4271 /// An update_fee message which should be sent
4272 #[no_mangle]
4273 pub extern "C" fn CommitmentUpdate_set_update_fee(this_ptr: &mut CommitmentUpdate, mut val: crate::lightning::ln::msgs::UpdateFee) {
4274         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
4275         unsafe { &mut *this_ptr.inner }.update_fee = local_val;
4276 }
4277 /// Finally, the commitment_signed message which should be sent
4278 #[no_mangle]
4279 pub extern "C" fn CommitmentUpdate_get_commitment_signed(this_ptr: &CommitmentUpdate) -> crate::lightning::ln::msgs::CommitmentSigned {
4280         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.commitment_signed;
4281         crate::lightning::ln::msgs::CommitmentSigned { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
4282 }
4283 /// Finally, the commitment_signed message which should be sent
4284 #[no_mangle]
4285 pub extern "C" fn CommitmentUpdate_set_commitment_signed(this_ptr: &mut CommitmentUpdate, mut val: crate::lightning::ln::msgs::CommitmentSigned) {
4286         unsafe { &mut *this_ptr.inner }.commitment_signed = *unsafe { Box::from_raw(val.take_inner()) };
4287 }
4288 /// Constructs a new CommitmentUpdate given each field
4289 #[must_use]
4290 #[no_mangle]
4291 pub extern "C" fn CommitmentUpdate_new(mut update_add_htlcs_arg: crate::c_types::derived::CVec_UpdateAddHTLCZ, mut update_fulfill_htlcs_arg: crate::c_types::derived::CVec_UpdateFulfillHTLCZ, mut update_fail_htlcs_arg: crate::c_types::derived::CVec_UpdateFailHTLCZ, mut update_fail_malformed_htlcs_arg: crate::c_types::derived::CVec_UpdateFailMalformedHTLCZ, mut update_fee_arg: crate::lightning::ln::msgs::UpdateFee, mut commitment_signed_arg: crate::lightning::ln::msgs::CommitmentSigned) -> CommitmentUpdate {
4292         let mut local_update_add_htlcs_arg = Vec::new(); for mut item in update_add_htlcs_arg.into_rust().drain(..) { local_update_add_htlcs_arg.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4293         let mut local_update_fulfill_htlcs_arg = Vec::new(); for mut item in update_fulfill_htlcs_arg.into_rust().drain(..) { local_update_fulfill_htlcs_arg.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4294         let mut local_update_fail_htlcs_arg = Vec::new(); for mut item in update_fail_htlcs_arg.into_rust().drain(..) { local_update_fail_htlcs_arg.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4295         let mut local_update_fail_malformed_htlcs_arg = Vec::new(); for mut item in update_fail_malformed_htlcs_arg.into_rust().drain(..) { local_update_fail_malformed_htlcs_arg.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4296         let mut local_update_fee_arg = if update_fee_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(update_fee_arg.take_inner()) } }) };
4297         CommitmentUpdate { inner: Box::into_raw(Box::new(nativeCommitmentUpdate {
4298                 update_add_htlcs: local_update_add_htlcs_arg,
4299                 update_fulfill_htlcs: local_update_fulfill_htlcs_arg,
4300                 update_fail_htlcs: local_update_fail_htlcs_arg,
4301                 update_fail_malformed_htlcs: local_update_fail_malformed_htlcs_arg,
4302                 update_fee: local_update_fee_arg,
4303                 commitment_signed: *unsafe { Box::from_raw(commitment_signed_arg.take_inner()) },
4304         })), is_owned: true }
4305 }
4306 impl Clone for CommitmentUpdate {
4307         fn clone(&self) -> Self {
4308                 Self {
4309                         inner: if <*mut nativeCommitmentUpdate>::is_null(self.inner) { std::ptr::null_mut() } else {
4310                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
4311                         is_owned: true,
4312                 }
4313         }
4314 }
4315 #[allow(unused)]
4316 /// Used only if an object of this type is returned as a trait impl by a method
4317 pub(crate) extern "C" fn CommitmentUpdate_clone_void(this_ptr: *const c_void) -> *mut c_void {
4318         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeCommitmentUpdate)).clone() })) as *mut c_void
4319 }
4320 #[no_mangle]
4321 /// Creates a copy of the CommitmentUpdate
4322 pub extern "C" fn CommitmentUpdate_clone(orig: &CommitmentUpdate) -> CommitmentUpdate {
4323         orig.clone()
4324 }
4325 /// The information we received from a peer along the route of a payment we originated. This is
4326 /// returned by ChannelMessageHandler::handle_update_fail_htlc to be passed into
4327 /// RoutingMessageHandler::handle_htlc_fail_channel_update to update our network map.
4328 #[must_use]
4329 #[derive(Clone)]
4330 #[repr(C)]
4331 pub enum HTLCFailChannelUpdate {
4332         /// We received an error which included a full ChannelUpdate message.
4333         ChannelUpdateMessage {
4334                 /// The unwrapped message we received
4335                 msg: crate::lightning::ln::msgs::ChannelUpdate,
4336         },
4337         /// We received an error which indicated only that a channel has been closed
4338         ChannelClosed {
4339                 /// The short_channel_id which has now closed.
4340                 short_channel_id: u64,
4341                 /// when this true, this channel should be permanently removed from the
4342                 /// consideration. Otherwise, this channel can be restored as new channel_update is received
4343                 is_permanent: bool,
4344         },
4345         /// We received an error which indicated only that a node has failed
4346         NodeFailure {
4347                 /// The node_id that has failed.
4348                 node_id: crate::c_types::PublicKey,
4349                 /// when this true, node should be permanently removed from the
4350                 /// consideration. Otherwise, the channels connected to this node can be
4351                 /// restored as new channel_update is received
4352                 is_permanent: bool,
4353         },
4354 }
4355 use lightning::ln::msgs::HTLCFailChannelUpdate as nativeHTLCFailChannelUpdate;
4356 impl HTLCFailChannelUpdate {
4357         #[allow(unused)]
4358         pub(crate) fn to_native(&self) -> nativeHTLCFailChannelUpdate {
4359                 match self {
4360                         HTLCFailChannelUpdate::ChannelUpdateMessage {ref msg, } => {
4361                                 let mut msg_nonref = (*msg).clone();
4362                                 nativeHTLCFailChannelUpdate::ChannelUpdateMessage {
4363                                         msg: *unsafe { Box::from_raw(msg_nonref.take_inner()) },
4364                                 }
4365                         },
4366                         HTLCFailChannelUpdate::ChannelClosed {ref short_channel_id, ref is_permanent, } => {
4367                                 let mut short_channel_id_nonref = (*short_channel_id).clone();
4368                                 let mut is_permanent_nonref = (*is_permanent).clone();
4369                                 nativeHTLCFailChannelUpdate::ChannelClosed {
4370                                         short_channel_id: short_channel_id_nonref,
4371                                         is_permanent: is_permanent_nonref,
4372                                 }
4373                         },
4374                         HTLCFailChannelUpdate::NodeFailure {ref node_id, ref is_permanent, } => {
4375                                 let mut node_id_nonref = (*node_id).clone();
4376                                 let mut is_permanent_nonref = (*is_permanent).clone();
4377                                 nativeHTLCFailChannelUpdate::NodeFailure {
4378                                         node_id: node_id_nonref.into_rust(),
4379                                         is_permanent: is_permanent_nonref,
4380                                 }
4381                         },
4382                 }
4383         }
4384         #[allow(unused)]
4385         pub(crate) fn into_native(self) -> nativeHTLCFailChannelUpdate {
4386                 match self {
4387                         HTLCFailChannelUpdate::ChannelUpdateMessage {mut msg, } => {
4388                                 nativeHTLCFailChannelUpdate::ChannelUpdateMessage {
4389                                         msg: *unsafe { Box::from_raw(msg.take_inner()) },
4390                                 }
4391                         },
4392                         HTLCFailChannelUpdate::ChannelClosed {mut short_channel_id, mut is_permanent, } => {
4393                                 nativeHTLCFailChannelUpdate::ChannelClosed {
4394                                         short_channel_id: short_channel_id,
4395                                         is_permanent: is_permanent,
4396                                 }
4397                         },
4398                         HTLCFailChannelUpdate::NodeFailure {mut node_id, mut is_permanent, } => {
4399                                 nativeHTLCFailChannelUpdate::NodeFailure {
4400                                         node_id: node_id.into_rust(),
4401                                         is_permanent: is_permanent,
4402                                 }
4403                         },
4404                 }
4405         }
4406         #[allow(unused)]
4407         pub(crate) fn from_native(native: &nativeHTLCFailChannelUpdate) -> Self {
4408                 match native {
4409                         nativeHTLCFailChannelUpdate::ChannelUpdateMessage {ref msg, } => {
4410                                 let mut msg_nonref = (*msg).clone();
4411                                 HTLCFailChannelUpdate::ChannelUpdateMessage {
4412                                         msg: crate::lightning::ln::msgs::ChannelUpdate { inner: Box::into_raw(Box::new(msg_nonref)), is_owned: true },
4413                                 }
4414                         },
4415                         nativeHTLCFailChannelUpdate::ChannelClosed {ref short_channel_id, ref is_permanent, } => {
4416                                 let mut short_channel_id_nonref = (*short_channel_id).clone();
4417                                 let mut is_permanent_nonref = (*is_permanent).clone();
4418                                 HTLCFailChannelUpdate::ChannelClosed {
4419                                         short_channel_id: short_channel_id_nonref,
4420                                         is_permanent: is_permanent_nonref,
4421                                 }
4422                         },
4423                         nativeHTLCFailChannelUpdate::NodeFailure {ref node_id, ref is_permanent, } => {
4424                                 let mut node_id_nonref = (*node_id).clone();
4425                                 let mut is_permanent_nonref = (*is_permanent).clone();
4426                                 HTLCFailChannelUpdate::NodeFailure {
4427                                         node_id: crate::c_types::PublicKey::from_rust(&node_id_nonref),
4428                                         is_permanent: is_permanent_nonref,
4429                                 }
4430                         },
4431                 }
4432         }
4433         #[allow(unused)]
4434         pub(crate) fn native_into(native: nativeHTLCFailChannelUpdate) -> Self {
4435                 match native {
4436                         nativeHTLCFailChannelUpdate::ChannelUpdateMessage {mut msg, } => {
4437                                 HTLCFailChannelUpdate::ChannelUpdateMessage {
4438                                         msg: crate::lightning::ln::msgs::ChannelUpdate { inner: Box::into_raw(Box::new(msg)), is_owned: true },
4439                                 }
4440                         },
4441                         nativeHTLCFailChannelUpdate::ChannelClosed {mut short_channel_id, mut is_permanent, } => {
4442                                 HTLCFailChannelUpdate::ChannelClosed {
4443                                         short_channel_id: short_channel_id,
4444                                         is_permanent: is_permanent,
4445                                 }
4446                         },
4447                         nativeHTLCFailChannelUpdate::NodeFailure {mut node_id, mut is_permanent, } => {
4448                                 HTLCFailChannelUpdate::NodeFailure {
4449                                         node_id: crate::c_types::PublicKey::from_rust(&node_id),
4450                                         is_permanent: is_permanent,
4451                                 }
4452                         },
4453                 }
4454         }
4455 }
4456 /// Frees any resources used by the HTLCFailChannelUpdate
4457 #[no_mangle]
4458 pub extern "C" fn HTLCFailChannelUpdate_free(this_ptr: HTLCFailChannelUpdate) { }
4459 /// Creates a copy of the HTLCFailChannelUpdate
4460 #[no_mangle]
4461 pub extern "C" fn HTLCFailChannelUpdate_clone(orig: &HTLCFailChannelUpdate) -> HTLCFailChannelUpdate {
4462         orig.clone()
4463 }
4464 /// A trait to describe an object which can receive channel messages.
4465 ///
4466 /// Messages MAY be called in parallel when they originate from different their_node_ids, however
4467 /// they MUST NOT be called in parallel when the two calls have the same their_node_id.
4468 #[repr(C)]
4469 pub struct ChannelMessageHandler {
4470         /// An opaque pointer which is passed to your function implementations as an argument.
4471         /// This has no meaning in the LDK, and can be NULL or any other value.
4472         pub this_arg: *mut c_void,
4473         /// Handle an incoming open_channel message from the given peer.
4474         pub handle_open_channel: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, their_features: crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::OpenChannel),
4475         /// Handle an incoming accept_channel message from the given peer.
4476         pub handle_accept_channel: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, their_features: crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::AcceptChannel),
4477         /// Handle an incoming funding_created message from the given peer.
4478         pub handle_funding_created: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingCreated),
4479         /// Handle an incoming funding_signed message from the given peer.
4480         pub handle_funding_signed: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingSigned),
4481         /// Handle an incoming funding_locked message from the given peer.
4482         pub handle_funding_locked: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingLocked),
4483         /// Handle an incoming shutdown message from the given peer.
4484         pub handle_shutdown: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, their_features: &crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::Shutdown),
4485         /// Handle an incoming closing_signed message from the given peer.
4486         pub handle_closing_signed: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ClosingSigned),
4487         /// Handle an incoming update_add_htlc message from the given peer.
4488         pub handle_update_add_htlc: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateAddHTLC),
4489         /// Handle an incoming update_fulfill_htlc message from the given peer.
4490         pub handle_update_fulfill_htlc: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFulfillHTLC),
4491         /// Handle an incoming update_fail_htlc message from the given peer.
4492         pub handle_update_fail_htlc: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailHTLC),
4493         /// Handle an incoming update_fail_malformed_htlc message from the given peer.
4494         pub handle_update_fail_malformed_htlc: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailMalformedHTLC),
4495         /// Handle an incoming commitment_signed message from the given peer.
4496         pub handle_commitment_signed: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::CommitmentSigned),
4497         /// Handle an incoming revoke_and_ack message from the given peer.
4498         pub handle_revoke_and_ack: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::RevokeAndACK),
4499         /// Handle an incoming update_fee message from the given peer.
4500         pub handle_update_fee: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFee),
4501         /// Handle an incoming announcement_signatures message from the given peer.
4502         pub handle_announcement_signatures: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::AnnouncementSignatures),
4503         /// Indicates a connection to the peer failed/an existing connection was lost. If no connection
4504         /// is believed to be possible in the future (eg they're sending us messages we don't
4505         /// understand or indicate they require unknown feature bits), no_connection_possible is set
4506         /// and any outstanding channels should be failed.
4507         pub peer_disconnected: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, no_connection_possible: bool),
4508         /// Handle a peer reconnecting, possibly generating channel_reestablish message(s).
4509         pub peer_connected: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::Init),
4510         /// Handle an incoming channel_reestablish message from the given peer.
4511         pub handle_channel_reestablish: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ChannelReestablish),
4512         /// Handle an incoming channel update from the given peer.
4513         pub handle_channel_update: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ChannelUpdate),
4514         /// Handle an incoming error message from the given peer.
4515         pub handle_error: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ErrorMessage),
4516         /// Implementation of MessageSendEventsProvider for this object.
4517         pub MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider,
4518         /// Frees any resources associated with this object given its this_arg pointer.
4519         /// Does not need to free the outer struct containing function pointers and may be NULL is no resources need to be freed.
4520         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
4521 }
4522 impl lightning::util::events::MessageSendEventsProvider for ChannelMessageHandler {
4523         fn get_and_clear_pending_msg_events(&self) -> Vec<lightning::util::events::MessageSendEvent> {
4524                 let mut ret = (self.MessageSendEventsProvider.get_and_clear_pending_msg_events)(self.this_arg);
4525                 let mut local_ret = Vec::new(); for mut item in ret.into_rust().drain(..) { local_ret.push( { item.into_native() }); };
4526                 local_ret
4527         }
4528 }
4529 unsafe impl Send for ChannelMessageHandler {}
4530 unsafe impl Sync for ChannelMessageHandler {}
4531
4532 use lightning::ln::msgs::ChannelMessageHandler as rustChannelMessageHandler;
4533 impl rustChannelMessageHandler for ChannelMessageHandler {
4534         fn handle_open_channel(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, their_features: lightning::ln::features::InitFeatures, msg: &lightning::ln::msgs::OpenChannel) {
4535                 (self.handle_open_channel)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), crate::lightning::ln::features::InitFeatures { inner: Box::into_raw(Box::new(their_features)), is_owned: true }, &crate::lightning::ln::msgs::OpenChannel { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4536         }
4537         fn handle_accept_channel(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, their_features: lightning::ln::features::InitFeatures, msg: &lightning::ln::msgs::AcceptChannel) {
4538                 (self.handle_accept_channel)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), crate::lightning::ln::features::InitFeatures { inner: Box::into_raw(Box::new(their_features)), is_owned: true }, &crate::lightning::ln::msgs::AcceptChannel { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4539         }
4540         fn handle_funding_created(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::FundingCreated) {
4541                 (self.handle_funding_created)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::FundingCreated { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4542         }
4543         fn handle_funding_signed(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::FundingSigned) {
4544                 (self.handle_funding_signed)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::FundingSigned { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4545         }
4546         fn handle_funding_locked(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::FundingLocked) {
4547                 (self.handle_funding_locked)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::FundingLocked { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4548         }
4549         fn handle_shutdown(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, their_features: &lightning::ln::features::InitFeatures, msg: &lightning::ln::msgs::Shutdown) {
4550                 (self.handle_shutdown)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::features::InitFeatures { inner: unsafe { (their_features as *const _) as *mut _ }, is_owned: false }, &crate::lightning::ln::msgs::Shutdown { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4551         }
4552         fn handle_closing_signed(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::ClosingSigned) {
4553                 (self.handle_closing_signed)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::ClosingSigned { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4554         }
4555         fn handle_update_add_htlc(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::UpdateAddHTLC) {
4556                 (self.handle_update_add_htlc)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::UpdateAddHTLC { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4557         }
4558         fn handle_update_fulfill_htlc(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::UpdateFulfillHTLC) {
4559                 (self.handle_update_fulfill_htlc)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::UpdateFulfillHTLC { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4560         }
4561         fn handle_update_fail_htlc(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::UpdateFailHTLC) {
4562                 (self.handle_update_fail_htlc)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::UpdateFailHTLC { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4563         }
4564         fn handle_update_fail_malformed_htlc(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::UpdateFailMalformedHTLC) {
4565                 (self.handle_update_fail_malformed_htlc)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::UpdateFailMalformedHTLC { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4566         }
4567         fn handle_commitment_signed(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::CommitmentSigned) {
4568                 (self.handle_commitment_signed)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::CommitmentSigned { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4569         }
4570         fn handle_revoke_and_ack(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::RevokeAndACK) {
4571                 (self.handle_revoke_and_ack)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::RevokeAndACK { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4572         }
4573         fn handle_update_fee(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::UpdateFee) {
4574                 (self.handle_update_fee)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::UpdateFee { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4575         }
4576         fn handle_announcement_signatures(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::AnnouncementSignatures) {
4577                 (self.handle_announcement_signatures)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::AnnouncementSignatures { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4578         }
4579         fn peer_disconnected(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, no_connection_possible: bool) {
4580                 (self.peer_disconnected)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), no_connection_possible)
4581         }
4582         fn peer_connected(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::Init) {
4583                 (self.peer_connected)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::Init { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4584         }
4585         fn handle_channel_reestablish(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::ChannelReestablish) {
4586                 (self.handle_channel_reestablish)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::ChannelReestablish { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4587         }
4588         fn handle_channel_update(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::ChannelUpdate) {
4589                 (self.handle_channel_update)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::ChannelUpdate { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4590         }
4591         fn handle_error(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: &lightning::ln::msgs::ErrorMessage) {
4592                 (self.handle_error)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::ErrorMessage { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false })
4593         }
4594 }
4595
4596 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
4597 // directly as a Deref trait in higher-level structs:
4598 impl std::ops::Deref for ChannelMessageHandler {
4599         type Target = Self;
4600         fn deref(&self) -> &Self {
4601                 self
4602         }
4603 }
4604 /// Calls the free function if one is set
4605 #[no_mangle]
4606 pub extern "C" fn ChannelMessageHandler_free(this_ptr: ChannelMessageHandler) { }
4607 impl Drop for ChannelMessageHandler {
4608         fn drop(&mut self) {
4609                 if let Some(f) = self.free {
4610                         f(self.this_arg);
4611                 }
4612         }
4613 }
4614 /// A trait to describe an object which can receive routing messages.
4615 ///
4616 /// # Implementor DoS Warnings
4617 ///
4618 /// For `gossip_queries` messages there are potential DoS vectors when handling
4619 /// inbound queries. Implementors using an on-disk network graph should be aware of
4620 /// repeated disk I/O for queries accessing different parts of the network graph.
4621 #[repr(C)]
4622 pub struct RoutingMessageHandler {
4623         /// An opaque pointer which is passed to your function implementations as an argument.
4624         /// This has no meaning in the LDK, and can be NULL or any other value.
4625         pub this_arg: *mut c_void,
4626         /// Handle an incoming node_announcement message, returning true if it should be forwarded on,
4627         /// false or returning an Err otherwise.
4628         #[must_use]
4629         pub handle_node_announcement: extern "C" fn (this_arg: *const c_void, msg: &crate::lightning::ln::msgs::NodeAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ,
4630         /// Handle a channel_announcement message, returning true if it should be forwarded on, false
4631         /// or returning an Err otherwise.
4632         #[must_use]
4633         pub handle_channel_announcement: extern "C" fn (this_arg: *const c_void, msg: &crate::lightning::ln::msgs::ChannelAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ,
4634         /// Handle an incoming channel_update message, returning true if it should be forwarded on,
4635         /// false or returning an Err otherwise.
4636         #[must_use]
4637         pub handle_channel_update: extern "C" fn (this_arg: *const c_void, msg: &crate::lightning::ln::msgs::ChannelUpdate) -> crate::c_types::derived::CResult_boolLightningErrorZ,
4638         /// Handle some updates to the route graph that we learned due to an outbound failed payment.
4639         pub handle_htlc_fail_channel_update: extern "C" fn (this_arg: *const c_void, update: &crate::lightning::ln::msgs::HTLCFailChannelUpdate),
4640         /// Gets a subset of the channel announcements and updates required to dump our routing table
4641         /// to a remote node, starting at the short_channel_id indicated by starting_point and
4642         /// including the batch_amount entries immediately higher in numerical value than starting_point.
4643         #[must_use]
4644         pub get_next_channel_announcements: extern "C" fn (this_arg: *const c_void, starting_point: u64, batch_amount: u8) -> crate::c_types::derived::CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ,
4645         /// Gets a subset of the node announcements required to dump our routing table to a remote node,
4646         /// starting at the node *after* the provided publickey and including batch_amount entries
4647         /// immediately higher (as defined by <PublicKey as Ord>::cmp) than starting_point.
4648         /// If None is provided for starting_point, we start at the first node.
4649         #[must_use]
4650         pub get_next_node_announcements: extern "C" fn (this_arg: *const c_void, starting_point: crate::c_types::PublicKey, batch_amount: u8) -> crate::c_types::derived::CVec_NodeAnnouncementZ,
4651         /// Called when a connection is established with a peer. This can be used to
4652         /// perform routing table synchronization using a strategy defined by the
4653         /// implementor.
4654         pub sync_routing_table: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, init: &crate::lightning::ln::msgs::Init),
4655         /// Handles the reply of a query we initiated to learn about channels
4656         /// for a given range of blocks. We can expect to receive one or more
4657         /// replies to a single query.
4658         #[must_use]
4659         pub handle_reply_channel_range: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: crate::lightning::ln::msgs::ReplyChannelRange) -> crate::c_types::derived::CResult_NoneLightningErrorZ,
4660         /// Handles the reply of a query we initiated asking for routing gossip
4661         /// messages for a list of channels. We should receive this message when
4662         /// a node has completed its best effort to send us the pertaining routing
4663         /// gossip messages.
4664         #[must_use]
4665         pub handle_reply_short_channel_ids_end: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: crate::lightning::ln::msgs::ReplyShortChannelIdsEnd) -> crate::c_types::derived::CResult_NoneLightningErrorZ,
4666         /// Handles when a peer asks us to send a list of short_channel_ids
4667         /// for the requested range of blocks.
4668         #[must_use]
4669         pub handle_query_channel_range: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: crate::lightning::ln::msgs::QueryChannelRange) -> crate::c_types::derived::CResult_NoneLightningErrorZ,
4670         /// Handles when a peer asks us to send routing gossip messages for a
4671         /// list of short_channel_ids.
4672         #[must_use]
4673         pub handle_query_short_channel_ids: extern "C" fn (this_arg: *const c_void, their_node_id: crate::c_types::PublicKey, msg: crate::lightning::ln::msgs::QueryShortChannelIds) -> crate::c_types::derived::CResult_NoneLightningErrorZ,
4674         /// Implementation of MessageSendEventsProvider for this object.
4675         pub MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider,
4676         /// Frees any resources associated with this object given its this_arg pointer.
4677         /// Does not need to free the outer struct containing function pointers and may be NULL is no resources need to be freed.
4678         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
4679 }
4680 unsafe impl Send for RoutingMessageHandler {}
4681 unsafe impl Sync for RoutingMessageHandler {}
4682 impl lightning::util::events::MessageSendEventsProvider for RoutingMessageHandler {
4683         fn get_and_clear_pending_msg_events(&self) -> Vec<lightning::util::events::MessageSendEvent> {
4684                 let mut ret = (self.MessageSendEventsProvider.get_and_clear_pending_msg_events)(self.this_arg);
4685                 let mut local_ret = Vec::new(); for mut item in ret.into_rust().drain(..) { local_ret.push( { item.into_native() }); };
4686                 local_ret
4687         }
4688 }
4689
4690 use lightning::ln::msgs::RoutingMessageHandler as rustRoutingMessageHandler;
4691 impl rustRoutingMessageHandler for RoutingMessageHandler {
4692         fn handle_node_announcement(&self, msg: &lightning::ln::msgs::NodeAnnouncement) -> Result<bool, lightning::ln::msgs::LightningError> {
4693                 let mut ret = (self.handle_node_announcement)(self.this_arg, &crate::lightning::ln::msgs::NodeAnnouncement { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false });
4694                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }) }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
4695                 local_ret
4696         }
4697         fn handle_channel_announcement(&self, msg: &lightning::ln::msgs::ChannelAnnouncement) -> Result<bool, lightning::ln::msgs::LightningError> {
4698                 let mut ret = (self.handle_channel_announcement)(self.this_arg, &crate::lightning::ln::msgs::ChannelAnnouncement { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false });
4699                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }) }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
4700                 local_ret
4701         }
4702         fn handle_channel_update(&self, msg: &lightning::ln::msgs::ChannelUpdate) -> Result<bool, lightning::ln::msgs::LightningError> {
4703                 let mut ret = (self.handle_channel_update)(self.this_arg, &crate::lightning::ln::msgs::ChannelUpdate { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false });
4704                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }) }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
4705                 local_ret
4706         }
4707         fn handle_htlc_fail_channel_update(&self, update: &lightning::ln::msgs::HTLCFailChannelUpdate) {
4708                 (self.handle_htlc_fail_channel_update)(self.this_arg, &crate::lightning::ln::msgs::HTLCFailChannelUpdate::from_native(update))
4709         }
4710         fn get_next_channel_announcements(&self, starting_point: u64, batch_amount: u8) -> Vec<(lightning::ln::msgs::ChannelAnnouncement, Option<lightning::ln::msgs::ChannelUpdate>, Option<lightning::ln::msgs::ChannelUpdate>)> {
4711                 let mut ret = (self.get_next_channel_announcements)(self.this_arg, starting_point, batch_amount);
4712                 let mut local_ret = Vec::new(); for mut item in ret.into_rust().drain(..) { local_ret.push( { let (mut orig_ret_0_0, mut orig_ret_0_1, mut orig_ret_0_2) = item.to_rust(); let mut local_orig_ret_0_1 = if orig_ret_0_1.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(orig_ret_0_1.take_inner()) } }) }; let mut local_orig_ret_0_2 = if orig_ret_0_2.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(orig_ret_0_2.take_inner()) } }) }; let mut local_ret_0 = (*unsafe { Box::from_raw(orig_ret_0_0.take_inner()) }, local_orig_ret_0_1, local_orig_ret_0_2); local_ret_0 }); };
4713                 local_ret
4714         }
4715         fn get_next_node_announcements(&self, starting_point: Option<&bitcoin::secp256k1::key::PublicKey>, batch_amount: u8) -> Vec<lightning::ln::msgs::NodeAnnouncement> {
4716                 let mut local_starting_point = if starting_point.is_none() { crate::c_types::PublicKey::null() } else {  { crate::c_types::PublicKey::from_rust(&(starting_point.unwrap())) } };
4717                 let mut ret = (self.get_next_node_announcements)(self.this_arg, local_starting_point, batch_amount);
4718                 let mut local_ret = Vec::new(); for mut item in ret.into_rust().drain(..) { local_ret.push( { *unsafe { Box::from_raw(item.take_inner()) } }); };
4719                 local_ret
4720         }
4721         fn sync_routing_table(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, init: &lightning::ln::msgs::Init) {
4722                 (self.sync_routing_table)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), &crate::lightning::ln::msgs::Init { inner: unsafe { (init as *const _) as *mut _ }, is_owned: false })
4723         }
4724         fn handle_reply_channel_range(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: lightning::ln::msgs::ReplyChannelRange) -> Result<(), lightning::ln::msgs::LightningError> {
4725                 let mut ret = (self.handle_reply_channel_range)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), crate::lightning::ln::msgs::ReplyChannelRange { inner: Box::into_raw(Box::new(msg)), is_owned: true });
4726                 let mut local_ret = match ret.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) })*/ }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
4727                 local_ret
4728         }
4729         fn handle_reply_short_channel_ids_end(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: lightning::ln::msgs::ReplyShortChannelIdsEnd) -> Result<(), lightning::ln::msgs::LightningError> {
4730                 let mut ret = (self.handle_reply_short_channel_ids_end)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), crate::lightning::ln::msgs::ReplyShortChannelIdsEnd { inner: Box::into_raw(Box::new(msg)), is_owned: true });
4731                 let mut local_ret = match ret.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) })*/ }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
4732                 local_ret
4733         }
4734         fn handle_query_channel_range(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: lightning::ln::msgs::QueryChannelRange) -> Result<(), lightning::ln::msgs::LightningError> {
4735                 let mut ret = (self.handle_query_channel_range)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), crate::lightning::ln::msgs::QueryChannelRange { inner: Box::into_raw(Box::new(msg)), is_owned: true });
4736                 let mut local_ret = match ret.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) })*/ }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
4737                 local_ret
4738         }
4739         fn handle_query_short_channel_ids(&self, their_node_id: &bitcoin::secp256k1::key::PublicKey, msg: lightning::ln::msgs::QueryShortChannelIds) -> Result<(), lightning::ln::msgs::LightningError> {
4740                 let mut ret = (self.handle_query_short_channel_ids)(self.this_arg, crate::c_types::PublicKey::from_rust(&their_node_id), crate::lightning::ln::msgs::QueryShortChannelIds { inner: Box::into_raw(Box::new(msg)), is_owned: true });
4741                 let mut local_ret = match ret.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) })*/ }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
4742                 local_ret
4743         }
4744 }
4745
4746 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
4747 // directly as a Deref trait in higher-level structs:
4748 impl std::ops::Deref for RoutingMessageHandler {
4749         type Target = Self;
4750         fn deref(&self) -> &Self {
4751                 self
4752         }
4753 }
4754 /// Calls the free function if one is set
4755 #[no_mangle]
4756 pub extern "C" fn RoutingMessageHandler_free(this_ptr: RoutingMessageHandler) { }
4757 impl Drop for RoutingMessageHandler {
4758         fn drop(&mut self) {
4759                 if let Some(f) = self.free {
4760                         f(self.this_arg);
4761                 }
4762         }
4763 }
4764 mod fuzzy_internal_msgs {
4765
4766 use std::str::FromStr;
4767 use std::ffi::c_void;
4768 use bitcoin::hashes::Hash;
4769 use crate::c_types::*;
4770
4771 }
4772 #[no_mangle]
4773 /// Serialize the AcceptChannel object into a byte array which can be read by AcceptChannel_read
4774 pub extern "C" fn AcceptChannel_write(obj: &AcceptChannel) -> crate::c_types::derived::CVec_u8Z {
4775         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4776 }
4777 #[no_mangle]
4778 pub(crate) extern "C" fn AcceptChannel_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4779         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeAcceptChannel) })
4780 }
4781 #[no_mangle]
4782 /// Read a AcceptChannel from a byte array, created by AcceptChannel_write
4783 pub extern "C" fn AcceptChannel_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_AcceptChannelDecodeErrorZ {
4784         let res = crate::c_types::deserialize_obj(ser);
4785         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::AcceptChannel { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4786         local_res
4787 }
4788 #[no_mangle]
4789 /// Serialize the AnnouncementSignatures object into a byte array which can be read by AnnouncementSignatures_read
4790 pub extern "C" fn AnnouncementSignatures_write(obj: &AnnouncementSignatures) -> crate::c_types::derived::CVec_u8Z {
4791         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4792 }
4793 #[no_mangle]
4794 pub(crate) extern "C" fn AnnouncementSignatures_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4795         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeAnnouncementSignatures) })
4796 }
4797 #[no_mangle]
4798 /// Read a AnnouncementSignatures from a byte array, created by AnnouncementSignatures_write
4799 pub extern "C" fn AnnouncementSignatures_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_AnnouncementSignaturesDecodeErrorZ {
4800         let res = crate::c_types::deserialize_obj(ser);
4801         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::AnnouncementSignatures { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4802         local_res
4803 }
4804 #[no_mangle]
4805 /// Serialize the ChannelReestablish object into a byte array which can be read by ChannelReestablish_read
4806 pub extern "C" fn ChannelReestablish_write(obj: &ChannelReestablish) -> crate::c_types::derived::CVec_u8Z {
4807         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4808 }
4809 #[no_mangle]
4810 pub(crate) extern "C" fn ChannelReestablish_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4811         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelReestablish) })
4812 }
4813 #[no_mangle]
4814 /// Read a ChannelReestablish from a byte array, created by ChannelReestablish_write
4815 pub extern "C" fn ChannelReestablish_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelReestablishDecodeErrorZ {
4816         let res = crate::c_types::deserialize_obj(ser);
4817         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::ChannelReestablish { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4818         local_res
4819 }
4820 #[no_mangle]
4821 /// Serialize the ClosingSigned object into a byte array which can be read by ClosingSigned_read
4822 pub extern "C" fn ClosingSigned_write(obj: &ClosingSigned) -> crate::c_types::derived::CVec_u8Z {
4823         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4824 }
4825 #[no_mangle]
4826 pub(crate) extern "C" fn ClosingSigned_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4827         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeClosingSigned) })
4828 }
4829 #[no_mangle]
4830 /// Read a ClosingSigned from a byte array, created by ClosingSigned_write
4831 pub extern "C" fn ClosingSigned_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ClosingSignedDecodeErrorZ {
4832         let res = crate::c_types::deserialize_obj(ser);
4833         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::ClosingSigned { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4834         local_res
4835 }
4836 #[no_mangle]
4837 /// Serialize the CommitmentSigned object into a byte array which can be read by CommitmentSigned_read
4838 pub extern "C" fn CommitmentSigned_write(obj: &CommitmentSigned) -> crate::c_types::derived::CVec_u8Z {
4839         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4840 }
4841 #[no_mangle]
4842 pub(crate) extern "C" fn CommitmentSigned_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4843         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeCommitmentSigned) })
4844 }
4845 #[no_mangle]
4846 /// Read a CommitmentSigned from a byte array, created by CommitmentSigned_write
4847 pub extern "C" fn CommitmentSigned_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_CommitmentSignedDecodeErrorZ {
4848         let res = crate::c_types::deserialize_obj(ser);
4849         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::CommitmentSigned { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4850         local_res
4851 }
4852 #[no_mangle]
4853 /// Serialize the FundingCreated object into a byte array which can be read by FundingCreated_read
4854 pub extern "C" fn FundingCreated_write(obj: &FundingCreated) -> crate::c_types::derived::CVec_u8Z {
4855         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4856 }
4857 #[no_mangle]
4858 pub(crate) extern "C" fn FundingCreated_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4859         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeFundingCreated) })
4860 }
4861 #[no_mangle]
4862 /// Read a FundingCreated from a byte array, created by FundingCreated_write
4863 pub extern "C" fn FundingCreated_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_FundingCreatedDecodeErrorZ {
4864         let res = crate::c_types::deserialize_obj(ser);
4865         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::FundingCreated { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4866         local_res
4867 }
4868 #[no_mangle]
4869 /// Serialize the FundingSigned object into a byte array which can be read by FundingSigned_read
4870 pub extern "C" fn FundingSigned_write(obj: &FundingSigned) -> crate::c_types::derived::CVec_u8Z {
4871         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4872 }
4873 #[no_mangle]
4874 pub(crate) extern "C" fn FundingSigned_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4875         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeFundingSigned) })
4876 }
4877 #[no_mangle]
4878 /// Read a FundingSigned from a byte array, created by FundingSigned_write
4879 pub extern "C" fn FundingSigned_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_FundingSignedDecodeErrorZ {
4880         let res = crate::c_types::deserialize_obj(ser);
4881         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::FundingSigned { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4882         local_res
4883 }
4884 #[no_mangle]
4885 /// Serialize the FundingLocked object into a byte array which can be read by FundingLocked_read
4886 pub extern "C" fn FundingLocked_write(obj: &FundingLocked) -> crate::c_types::derived::CVec_u8Z {
4887         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4888 }
4889 #[no_mangle]
4890 pub(crate) extern "C" fn FundingLocked_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4891         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeFundingLocked) })
4892 }
4893 #[no_mangle]
4894 /// Read a FundingLocked from a byte array, created by FundingLocked_write
4895 pub extern "C" fn FundingLocked_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_FundingLockedDecodeErrorZ {
4896         let res = crate::c_types::deserialize_obj(ser);
4897         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::FundingLocked { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4898         local_res
4899 }
4900 #[no_mangle]
4901 /// Serialize the Init object into a byte array which can be read by Init_read
4902 pub extern "C" fn Init_write(obj: &Init) -> crate::c_types::derived::CVec_u8Z {
4903         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4904 }
4905 #[no_mangle]
4906 pub(crate) extern "C" fn Init_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4907         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeInit) })
4908 }
4909 #[no_mangle]
4910 /// Read a Init from a byte array, created by Init_write
4911 pub extern "C" fn Init_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_InitDecodeErrorZ {
4912         let res = crate::c_types::deserialize_obj(ser);
4913         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::Init { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4914         local_res
4915 }
4916 #[no_mangle]
4917 /// Serialize the OpenChannel object into a byte array which can be read by OpenChannel_read
4918 pub extern "C" fn OpenChannel_write(obj: &OpenChannel) -> crate::c_types::derived::CVec_u8Z {
4919         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4920 }
4921 #[no_mangle]
4922 pub(crate) extern "C" fn OpenChannel_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4923         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeOpenChannel) })
4924 }
4925 #[no_mangle]
4926 /// Read a OpenChannel from a byte array, created by OpenChannel_write
4927 pub extern "C" fn OpenChannel_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_OpenChannelDecodeErrorZ {
4928         let res = crate::c_types::deserialize_obj(ser);
4929         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::OpenChannel { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4930         local_res
4931 }
4932 #[no_mangle]
4933 /// Serialize the RevokeAndACK object into a byte array which can be read by RevokeAndACK_read
4934 pub extern "C" fn RevokeAndACK_write(obj: &RevokeAndACK) -> crate::c_types::derived::CVec_u8Z {
4935         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4936 }
4937 #[no_mangle]
4938 pub(crate) extern "C" fn RevokeAndACK_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4939         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeRevokeAndACK) })
4940 }
4941 #[no_mangle]
4942 /// Read a RevokeAndACK from a byte array, created by RevokeAndACK_write
4943 pub extern "C" fn RevokeAndACK_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_RevokeAndACKDecodeErrorZ {
4944         let res = crate::c_types::deserialize_obj(ser);
4945         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::RevokeAndACK { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4946         local_res
4947 }
4948 #[no_mangle]
4949 /// Serialize the Shutdown object into a byte array which can be read by Shutdown_read
4950 pub extern "C" fn Shutdown_write(obj: &Shutdown) -> crate::c_types::derived::CVec_u8Z {
4951         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4952 }
4953 #[no_mangle]
4954 pub(crate) extern "C" fn Shutdown_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4955         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeShutdown) })
4956 }
4957 #[no_mangle]
4958 /// Read a Shutdown from a byte array, created by Shutdown_write
4959 pub extern "C" fn Shutdown_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ShutdownDecodeErrorZ {
4960         let res = crate::c_types::deserialize_obj(ser);
4961         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::Shutdown { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4962         local_res
4963 }
4964 #[no_mangle]
4965 /// Serialize the UpdateFailHTLC object into a byte array which can be read by UpdateFailHTLC_read
4966 pub extern "C" fn UpdateFailHTLC_write(obj: &UpdateFailHTLC) -> crate::c_types::derived::CVec_u8Z {
4967         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4968 }
4969 #[no_mangle]
4970 pub(crate) extern "C" fn UpdateFailHTLC_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4971         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeUpdateFailHTLC) })
4972 }
4973 #[no_mangle]
4974 /// Read a UpdateFailHTLC from a byte array, created by UpdateFailHTLC_write
4975 pub extern "C" fn UpdateFailHTLC_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_UpdateFailHTLCDecodeErrorZ {
4976         let res = crate::c_types::deserialize_obj(ser);
4977         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::UpdateFailHTLC { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4978         local_res
4979 }
4980 #[no_mangle]
4981 /// Serialize the UpdateFailMalformedHTLC object into a byte array which can be read by UpdateFailMalformedHTLC_read
4982 pub extern "C" fn UpdateFailMalformedHTLC_write(obj: &UpdateFailMalformedHTLC) -> crate::c_types::derived::CVec_u8Z {
4983         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
4984 }
4985 #[no_mangle]
4986 pub(crate) extern "C" fn UpdateFailMalformedHTLC_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
4987         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeUpdateFailMalformedHTLC) })
4988 }
4989 #[no_mangle]
4990 /// Read a UpdateFailMalformedHTLC from a byte array, created by UpdateFailMalformedHTLC_write
4991 pub extern "C" fn UpdateFailMalformedHTLC_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_UpdateFailMalformedHTLCDecodeErrorZ {
4992         let res = crate::c_types::deserialize_obj(ser);
4993         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::UpdateFailMalformedHTLC { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
4994         local_res
4995 }
4996 #[no_mangle]
4997 /// Serialize the UpdateFee object into a byte array which can be read by UpdateFee_read
4998 pub extern "C" fn UpdateFee_write(obj: &UpdateFee) -> crate::c_types::derived::CVec_u8Z {
4999         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5000 }
5001 #[no_mangle]
5002 pub(crate) extern "C" fn UpdateFee_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5003         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeUpdateFee) })
5004 }
5005 #[no_mangle]
5006 /// Read a UpdateFee from a byte array, created by UpdateFee_write
5007 pub extern "C" fn UpdateFee_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_UpdateFeeDecodeErrorZ {
5008         let res = crate::c_types::deserialize_obj(ser);
5009         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::UpdateFee { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5010         local_res
5011 }
5012 #[no_mangle]
5013 /// Serialize the UpdateFulfillHTLC object into a byte array which can be read by UpdateFulfillHTLC_read
5014 pub extern "C" fn UpdateFulfillHTLC_write(obj: &UpdateFulfillHTLC) -> crate::c_types::derived::CVec_u8Z {
5015         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5016 }
5017 #[no_mangle]
5018 pub(crate) extern "C" fn UpdateFulfillHTLC_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5019         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeUpdateFulfillHTLC) })
5020 }
5021 #[no_mangle]
5022 /// Read a UpdateFulfillHTLC from a byte array, created by UpdateFulfillHTLC_write
5023 pub extern "C" fn UpdateFulfillHTLC_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_UpdateFulfillHTLCDecodeErrorZ {
5024         let res = crate::c_types::deserialize_obj(ser);
5025         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::UpdateFulfillHTLC { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5026         local_res
5027 }
5028 #[no_mangle]
5029 /// Serialize the UpdateAddHTLC object into a byte array which can be read by UpdateAddHTLC_read
5030 pub extern "C" fn UpdateAddHTLC_write(obj: &UpdateAddHTLC) -> crate::c_types::derived::CVec_u8Z {
5031         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5032 }
5033 #[no_mangle]
5034 pub(crate) extern "C" fn UpdateAddHTLC_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5035         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeUpdateAddHTLC) })
5036 }
5037 #[no_mangle]
5038 /// Read a UpdateAddHTLC from a byte array, created by UpdateAddHTLC_write
5039 pub extern "C" fn UpdateAddHTLC_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_UpdateAddHTLCDecodeErrorZ {
5040         let res = crate::c_types::deserialize_obj(ser);
5041         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::UpdateAddHTLC { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5042         local_res
5043 }
5044 #[no_mangle]
5045 /// Serialize the Ping object into a byte array which can be read by Ping_read
5046 pub extern "C" fn Ping_write(obj: &Ping) -> crate::c_types::derived::CVec_u8Z {
5047         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5048 }
5049 #[no_mangle]
5050 pub(crate) extern "C" fn Ping_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5051         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativePing) })
5052 }
5053 #[no_mangle]
5054 /// Read a Ping from a byte array, created by Ping_write
5055 pub extern "C" fn Ping_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_PingDecodeErrorZ {
5056         let res = crate::c_types::deserialize_obj(ser);
5057         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::Ping { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5058         local_res
5059 }
5060 #[no_mangle]
5061 /// Serialize the Pong object into a byte array which can be read by Pong_read
5062 pub extern "C" fn Pong_write(obj: &Pong) -> crate::c_types::derived::CVec_u8Z {
5063         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5064 }
5065 #[no_mangle]
5066 pub(crate) extern "C" fn Pong_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5067         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativePong) })
5068 }
5069 #[no_mangle]
5070 /// Read a Pong from a byte array, created by Pong_write
5071 pub extern "C" fn Pong_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_PongDecodeErrorZ {
5072         let res = crate::c_types::deserialize_obj(ser);
5073         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::Pong { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5074         local_res
5075 }
5076 #[no_mangle]
5077 /// Serialize the UnsignedChannelAnnouncement object into a byte array which can be read by UnsignedChannelAnnouncement_read
5078 pub extern "C" fn UnsignedChannelAnnouncement_write(obj: &UnsignedChannelAnnouncement) -> crate::c_types::derived::CVec_u8Z {
5079         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5080 }
5081 #[no_mangle]
5082 pub(crate) extern "C" fn UnsignedChannelAnnouncement_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5083         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeUnsignedChannelAnnouncement) })
5084 }
5085 #[no_mangle]
5086 /// Read a UnsignedChannelAnnouncement from a byte array, created by UnsignedChannelAnnouncement_write
5087 pub extern "C" fn UnsignedChannelAnnouncement_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_UnsignedChannelAnnouncementDecodeErrorZ {
5088         let res = crate::c_types::deserialize_obj(ser);
5089         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::UnsignedChannelAnnouncement { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5090         local_res
5091 }
5092 #[no_mangle]
5093 /// Serialize the ChannelAnnouncement object into a byte array which can be read by ChannelAnnouncement_read
5094 pub extern "C" fn ChannelAnnouncement_write(obj: &ChannelAnnouncement) -> crate::c_types::derived::CVec_u8Z {
5095         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5096 }
5097 #[no_mangle]
5098 pub(crate) extern "C" fn ChannelAnnouncement_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5099         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelAnnouncement) })
5100 }
5101 #[no_mangle]
5102 /// Read a ChannelAnnouncement from a byte array, created by ChannelAnnouncement_write
5103 pub extern "C" fn ChannelAnnouncement_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelAnnouncementDecodeErrorZ {
5104         let res = crate::c_types::deserialize_obj(ser);
5105         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::ChannelAnnouncement { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5106         local_res
5107 }
5108 #[no_mangle]
5109 /// Serialize the UnsignedChannelUpdate object into a byte array which can be read by UnsignedChannelUpdate_read
5110 pub extern "C" fn UnsignedChannelUpdate_write(obj: &UnsignedChannelUpdate) -> crate::c_types::derived::CVec_u8Z {
5111         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5112 }
5113 #[no_mangle]
5114 pub(crate) extern "C" fn UnsignedChannelUpdate_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5115         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeUnsignedChannelUpdate) })
5116 }
5117 #[no_mangle]
5118 /// Read a UnsignedChannelUpdate from a byte array, created by UnsignedChannelUpdate_write
5119 pub extern "C" fn UnsignedChannelUpdate_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_UnsignedChannelUpdateDecodeErrorZ {
5120         let res = crate::c_types::deserialize_obj(ser);
5121         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::UnsignedChannelUpdate { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5122         local_res
5123 }
5124 #[no_mangle]
5125 /// Serialize the ChannelUpdate object into a byte array which can be read by ChannelUpdate_read
5126 pub extern "C" fn ChannelUpdate_write(obj: &ChannelUpdate) -> crate::c_types::derived::CVec_u8Z {
5127         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5128 }
5129 #[no_mangle]
5130 pub(crate) extern "C" fn ChannelUpdate_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5131         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelUpdate) })
5132 }
5133 #[no_mangle]
5134 /// Read a ChannelUpdate from a byte array, created by ChannelUpdate_write
5135 pub extern "C" fn ChannelUpdate_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelUpdateDecodeErrorZ {
5136         let res = crate::c_types::deserialize_obj(ser);
5137         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::ChannelUpdate { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5138         local_res
5139 }
5140 #[no_mangle]
5141 /// Serialize the ErrorMessage object into a byte array which can be read by ErrorMessage_read
5142 pub extern "C" fn ErrorMessage_write(obj: &ErrorMessage) -> crate::c_types::derived::CVec_u8Z {
5143         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5144 }
5145 #[no_mangle]
5146 pub(crate) extern "C" fn ErrorMessage_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5147         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeErrorMessage) })
5148 }
5149 #[no_mangle]
5150 /// Read a ErrorMessage from a byte array, created by ErrorMessage_write
5151 pub extern "C" fn ErrorMessage_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ErrorMessageDecodeErrorZ {
5152         let res = crate::c_types::deserialize_obj(ser);
5153         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::ErrorMessage { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5154         local_res
5155 }
5156 #[no_mangle]
5157 /// Serialize the UnsignedNodeAnnouncement object into a byte array which can be read by UnsignedNodeAnnouncement_read
5158 pub extern "C" fn UnsignedNodeAnnouncement_write(obj: &UnsignedNodeAnnouncement) -> crate::c_types::derived::CVec_u8Z {
5159         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5160 }
5161 #[no_mangle]
5162 pub(crate) extern "C" fn UnsignedNodeAnnouncement_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5163         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeUnsignedNodeAnnouncement) })
5164 }
5165 #[no_mangle]
5166 /// Read a UnsignedNodeAnnouncement from a byte array, created by UnsignedNodeAnnouncement_write
5167 pub extern "C" fn UnsignedNodeAnnouncement_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_UnsignedNodeAnnouncementDecodeErrorZ {
5168         let res = crate::c_types::deserialize_obj(ser);
5169         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::UnsignedNodeAnnouncement { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5170         local_res
5171 }
5172 #[no_mangle]
5173 /// Serialize the NodeAnnouncement object into a byte array which can be read by NodeAnnouncement_read
5174 pub extern "C" fn NodeAnnouncement_write(obj: &NodeAnnouncement) -> crate::c_types::derived::CVec_u8Z {
5175         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5176 }
5177 #[no_mangle]
5178 pub(crate) extern "C" fn NodeAnnouncement_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5179         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNodeAnnouncement) })
5180 }
5181 #[no_mangle]
5182 /// Read a NodeAnnouncement from a byte array, created by NodeAnnouncement_write
5183 pub extern "C" fn NodeAnnouncement_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_NodeAnnouncementDecodeErrorZ {
5184         let res = crate::c_types::deserialize_obj(ser);
5185         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::NodeAnnouncement { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5186         local_res
5187 }
5188 #[no_mangle]
5189 /// Read a QueryShortChannelIds from a byte array, created by QueryShortChannelIds_write
5190 pub extern "C" fn QueryShortChannelIds_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_QueryShortChannelIdsDecodeErrorZ {
5191         let res = crate::c_types::deserialize_obj(ser);
5192         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::QueryShortChannelIds { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5193         local_res
5194 }
5195 #[no_mangle]
5196 /// Serialize the QueryShortChannelIds object into a byte array which can be read by QueryShortChannelIds_read
5197 pub extern "C" fn QueryShortChannelIds_write(obj: &QueryShortChannelIds) -> crate::c_types::derived::CVec_u8Z {
5198         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5199 }
5200 #[no_mangle]
5201 pub(crate) extern "C" fn QueryShortChannelIds_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5202         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeQueryShortChannelIds) })
5203 }
5204 #[no_mangle]
5205 /// Read a ReplyShortChannelIdsEnd from a byte array, created by ReplyShortChannelIdsEnd_write
5206 pub extern "C" fn ReplyShortChannelIdsEnd_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ReplyShortChannelIdsEndDecodeErrorZ {
5207         let res = crate::c_types::deserialize_obj(ser);
5208         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::ReplyShortChannelIdsEnd { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5209         local_res
5210 }
5211 #[no_mangle]
5212 /// Serialize the ReplyShortChannelIdsEnd object into a byte array which can be read by ReplyShortChannelIdsEnd_read
5213 pub extern "C" fn ReplyShortChannelIdsEnd_write(obj: &ReplyShortChannelIdsEnd) -> crate::c_types::derived::CVec_u8Z {
5214         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5215 }
5216 #[no_mangle]
5217 pub(crate) extern "C" fn ReplyShortChannelIdsEnd_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5218         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeReplyShortChannelIdsEnd) })
5219 }
5220 ///\n\t * Calculates the overflow safe ending block height for the query.\n\t * Overflow returns `0xffffffff`, otherwise returns `first_blocknum + number_of_blocks`\n\t 
5221 #[must_use]
5222 #[no_mangle]
5223 pub extern "C" fn QueryChannelRange_end_blocknum(this_arg: &QueryChannelRange) -> u32 {
5224         let mut ret = unsafe { &*this_arg.inner }.end_blocknum();
5225         ret
5226 }
5227
5228 #[no_mangle]
5229 /// Read a QueryChannelRange from a byte array, created by QueryChannelRange_write
5230 pub extern "C" fn QueryChannelRange_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_QueryChannelRangeDecodeErrorZ {
5231         let res = crate::c_types::deserialize_obj(ser);
5232         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::QueryChannelRange { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5233         local_res
5234 }
5235 #[no_mangle]
5236 /// Serialize the QueryChannelRange object into a byte array which can be read by QueryChannelRange_read
5237 pub extern "C" fn QueryChannelRange_write(obj: &QueryChannelRange) -> crate::c_types::derived::CVec_u8Z {
5238         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5239 }
5240 #[no_mangle]
5241 pub(crate) extern "C" fn QueryChannelRange_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5242         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeQueryChannelRange) })
5243 }
5244 #[no_mangle]
5245 /// Read a ReplyChannelRange from a byte array, created by ReplyChannelRange_write
5246 pub extern "C" fn ReplyChannelRange_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ReplyChannelRangeDecodeErrorZ {
5247         let res = crate::c_types::deserialize_obj(ser);
5248         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::ReplyChannelRange { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5249         local_res
5250 }
5251 #[no_mangle]
5252 /// Serialize the ReplyChannelRange object into a byte array which can be read by ReplyChannelRange_read
5253 pub extern "C" fn ReplyChannelRange_write(obj: &ReplyChannelRange) -> crate::c_types::derived::CVec_u8Z {
5254         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5255 }
5256 #[no_mangle]
5257 pub(crate) extern "C" fn ReplyChannelRange_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5258         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeReplyChannelRange) })
5259 }
5260 #[no_mangle]
5261 /// Read a GossipTimestampFilter from a byte array, created by GossipTimestampFilter_write
5262 pub extern "C" fn GossipTimestampFilter_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_GossipTimestampFilterDecodeErrorZ {
5263         let res = crate::c_types::deserialize_obj(ser);
5264         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::ln::msgs::GossipTimestampFilter { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
5265         local_res
5266 }
5267 #[no_mangle]
5268 /// Serialize the GossipTimestampFilter object into a byte array which can be read by GossipTimestampFilter_read
5269 pub extern "C" fn GossipTimestampFilter_write(obj: &GossipTimestampFilter) -> crate::c_types::derived::CVec_u8Z {
5270         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
5271 }
5272 #[no_mangle]
5273 pub(crate) extern "C" fn GossipTimestampFilter_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
5274         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeGossipTimestampFilter) })
5275 }