spacedatastandards-org 1.73.12

Space data standards framework based on CCSDS standards and Google FlatBuffers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
// automatically generated by the FlatBuffers compiler, do not modify


// @generated

use core::mem;
use core::cmp::Ordering;

extern crate flatbuffers;
use self::flatbuffers::{EndianScalar, Follow};

pub enum PNMOffset {}
#[derive(Copy, Clone, PartialEq)]

/// Publish Notification Message
pub struct PNM<'a> {
  pub _tab: flatbuffers::Table<'a>,
}

impl<'a> flatbuffers::Follow<'a> for PNM<'a> {
  type Inner = PNM<'a>;
  #[inline]
  unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
    Self { _tab: flatbuffers::Table::new(buf, loc) }
  }
}

impl<'a> PNM<'a> {
  pub const VT_MULTIFORMAT_ADDRESS: flatbuffers::VOffsetT = 4;
  pub const VT_PUBLISH_TIMESTAMP: flatbuffers::VOffsetT = 6;
  pub const VT_CID: flatbuffers::VOffsetT = 8;
  pub const VT_FILE_NAME: flatbuffers::VOffsetT = 10;
  pub const VT_FILE_ID: flatbuffers::VOffsetT = 12;
  pub const VT_SIGNATURE: flatbuffers::VOffsetT = 14;
  pub const VT_TIMESTAMP_SIGNATURE: flatbuffers::VOffsetT = 16;
  pub const VT_SIGNATURE_TYPE: flatbuffers::VOffsetT = 18;
  pub const VT_TIMESTAMP_SIGNATURE_TYPE: flatbuffers::VOffsetT = 20;

  #[inline]
  pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self {
    PNM { _tab: table }
  }
  #[allow(unused_mut)]
  pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: flatbuffers::Allocator + 'bldr>(
    _fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr, A>,
    args: &'args PNMArgs<'args>
  ) -> flatbuffers::WIPOffset<PNM<'bldr>> {
    let mut builder = PNMBuilder::new(_fbb);
    if let Some(x) = args.TIMESTAMP_SIGNATURE_TYPE { builder.add_TIMESTAMP_SIGNATURE_TYPE(x); }
    if let Some(x) = args.SIGNATURE_TYPE { builder.add_SIGNATURE_TYPE(x); }
    if let Some(x) = args.TIMESTAMP_SIGNATURE { builder.add_TIMESTAMP_SIGNATURE(x); }
    if let Some(x) = args.SIGNATURE { builder.add_SIGNATURE(x); }
    if let Some(x) = args.FILE_ID { builder.add_FILE_ID(x); }
    if let Some(x) = args.FILE_NAME { builder.add_FILE_NAME(x); }
    if let Some(x) = args.CID { builder.add_CID(x); }
    if let Some(x) = args.PUBLISH_TIMESTAMP { builder.add_PUBLISH_TIMESTAMP(x); }
    if let Some(x) = args.MULTIFORMAT_ADDRESS { builder.add_MULTIFORMAT_ADDRESS(x); }
    builder.finish()
  }

  pub fn unpack(&self) -> PNMT {
    let MULTIFORMAT_ADDRESS = self.MULTIFORMAT_ADDRESS().map(|x| {
      x.to_string()
    });
    let PUBLISH_TIMESTAMP = self.PUBLISH_TIMESTAMP().map(|x| {
      x.to_string()
    });
    let CID = self.CID().map(|x| {
      x.to_string()
    });
    let FILE_NAME = self.FILE_NAME().map(|x| {
      x.to_string()
    });
    let FILE_ID = self.FILE_ID().map(|x| {
      x.to_string()
    });
    let SIGNATURE = self.SIGNATURE().map(|x| {
      x.to_string()
    });
    let TIMESTAMP_SIGNATURE = self.TIMESTAMP_SIGNATURE().map(|x| {
      x.to_string()
    });
    let SIGNATURE_TYPE = self.SIGNATURE_TYPE().map(|x| {
      x.to_string()
    });
    let TIMESTAMP_SIGNATURE_TYPE = self.TIMESTAMP_SIGNATURE_TYPE().map(|x| {
      x.to_string()
    });
    PNMT {
      MULTIFORMAT_ADDRESS,
      PUBLISH_TIMESTAMP,
      CID,
      FILE_NAME,
      FILE_ID,
      SIGNATURE,
      TIMESTAMP_SIGNATURE,
      SIGNATURE_TYPE,
      TIMESTAMP_SIGNATURE_TYPE,
    }
  }

  /// Multiformat Address
  /// https://multiformats.io/multiaddr/
  /// A universal address format for representing multiple network protocols. Examples include:
  /// - /ip4/192.168.1.1/tcp/80 for an IPv4 address with TCP protocol
  /// - /ip6zone/x/ip6/::1 for an IPv6 address with a zone
  /// - /dns4/example.com for a domain name resolvable only to IPv4 addresses
  /// - /ipfs/bafybeiccfclkdtucu6y4yc5cpr6y3yuinr67svmii46v5cfcrkp47ihehy/README.txt -IPFS address w/CID and path to `README.txt`.
  #[inline]
  pub fn MULTIFORMAT_ADDRESS(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_MULTIFORMAT_ADDRESS, None)}
  }
  /// Publish Time OF THE Publish Notification Message
  #[inline]
  pub fn PUBLISH_TIMESTAMP(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_PUBLISH_TIMESTAMP, None)}
  }
  /// Concatenated Content Identifier (CID)
  /// This field is a unique ID for distributed systems (CID).
  /// The CID provides a unique identifier within distributed systems, as detailed at https://github.com/multiformats/cid. 
  #[inline]
  pub fn CID(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_CID, None)}
  }
  /// File ID
  /// This field is the Name
  #[inline]
  pub fn FILE_NAME(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_FILE_NAME, None)}
  }
  /// File ID
  /// This field is the file ID / Standard Type
  #[inline]
  pub fn FILE_ID(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_FILE_ID, None)}
  }
  /// Digital Signature of the CID
  /// This is the digital signature of the CID, signed using the specified cryptographic method.
  #[inline]
  pub fn SIGNATURE(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_SIGNATURE, None)}
  }
  /// Timestamp Signature
  /// Digital signature of the publish timestamp, using the specified cryptographic method for timestamp verification.
  #[inline]
  pub fn TIMESTAMP_SIGNATURE(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_TIMESTAMP_SIGNATURE, None)}
  }
  /// Type of Cryptographic Signature Used
  /// Specifies the type of cryptographic signature used for the SIGNATURE field, indicating the specific blockchain technology, such as Ethereum or BTC.
  #[inline]
  pub fn SIGNATURE_TYPE(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_SIGNATURE_TYPE, None)}
  }
  /// Type of Cryptographic Signature Used for Timestamp
  /// Specifies the type of cryptographic signature used for the TIMESTAMP_SIGNATURE field, indicating the specific blockchain technology, such as Ethereum or BTC.
  #[inline]
  pub fn TIMESTAMP_SIGNATURE_TYPE(&self) -> Option<&'a str> {
    // Safety:
    // Created from valid Table for this object
    // which contains a valid value in this slot
    unsafe { self._tab.get::<flatbuffers::ForwardsUOffset<&str>>(PNM::VT_TIMESTAMP_SIGNATURE_TYPE, None)}
  }
}

impl flatbuffers::Verifiable for PNM<'_> {
  #[inline]
  fn run_verifier(
    v: &mut flatbuffers::Verifier, pos: usize
  ) -> Result<(), flatbuffers::InvalidFlatbuffer> {
    use self::flatbuffers::Verifiable;
    v.visit_table(pos)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("MULTIFORMAT_ADDRESS", Self::VT_MULTIFORMAT_ADDRESS, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("PUBLISH_TIMESTAMP", Self::VT_PUBLISH_TIMESTAMP, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("CID", Self::VT_CID, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("FILE_NAME", Self::VT_FILE_NAME, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("FILE_ID", Self::VT_FILE_ID, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("SIGNATURE", Self::VT_SIGNATURE, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("TIMESTAMP_SIGNATURE", Self::VT_TIMESTAMP_SIGNATURE, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("SIGNATURE_TYPE", Self::VT_SIGNATURE_TYPE, false)?
     .visit_field::<flatbuffers::ForwardsUOffset<&str>>("TIMESTAMP_SIGNATURE_TYPE", Self::VT_TIMESTAMP_SIGNATURE_TYPE, false)?
     .finish();
    Ok(())
  }
}
pub struct PNMArgs<'a> {
    pub MULTIFORMAT_ADDRESS: Option<flatbuffers::WIPOffset<&'a str>>,
    pub PUBLISH_TIMESTAMP: Option<flatbuffers::WIPOffset<&'a str>>,
    pub CID: Option<flatbuffers::WIPOffset<&'a str>>,
    pub FILE_NAME: Option<flatbuffers::WIPOffset<&'a str>>,
    pub FILE_ID: Option<flatbuffers::WIPOffset<&'a str>>,
    pub SIGNATURE: Option<flatbuffers::WIPOffset<&'a str>>,
    pub TIMESTAMP_SIGNATURE: Option<flatbuffers::WIPOffset<&'a str>>,
    pub SIGNATURE_TYPE: Option<flatbuffers::WIPOffset<&'a str>>,
    pub TIMESTAMP_SIGNATURE_TYPE: Option<flatbuffers::WIPOffset<&'a str>>,
}
impl<'a> Default for PNMArgs<'a> {
  #[inline]
  fn default() -> Self {
    PNMArgs {
      MULTIFORMAT_ADDRESS: None,
      PUBLISH_TIMESTAMP: None,
      CID: None,
      FILE_NAME: None,
      FILE_ID: None,
      SIGNATURE: None,
      TIMESTAMP_SIGNATURE: None,
      SIGNATURE_TYPE: None,
      TIMESTAMP_SIGNATURE_TYPE: None,
    }
  }
}

pub struct PNMBuilder<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> {
  fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a, A>,
  start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>,
}
impl<'a: 'b, 'b, A: flatbuffers::Allocator + 'a> PNMBuilder<'a, 'b, A> {
  #[inline]
  pub fn add_MULTIFORMAT_ADDRESS(&mut self, MULTIFORMAT_ADDRESS: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_MULTIFORMAT_ADDRESS, MULTIFORMAT_ADDRESS);
  }
  #[inline]
  pub fn add_PUBLISH_TIMESTAMP(&mut self, PUBLISH_TIMESTAMP: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_PUBLISH_TIMESTAMP, PUBLISH_TIMESTAMP);
  }
  #[inline]
  pub fn add_CID(&mut self, CID: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_CID, CID);
  }
  #[inline]
  pub fn add_FILE_NAME(&mut self, FILE_NAME: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_FILE_NAME, FILE_NAME);
  }
  #[inline]
  pub fn add_FILE_ID(&mut self, FILE_ID: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_FILE_ID, FILE_ID);
  }
  #[inline]
  pub fn add_SIGNATURE(&mut self, SIGNATURE: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_SIGNATURE, SIGNATURE);
  }
  #[inline]
  pub fn add_TIMESTAMP_SIGNATURE(&mut self, TIMESTAMP_SIGNATURE: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_TIMESTAMP_SIGNATURE, TIMESTAMP_SIGNATURE);
  }
  #[inline]
  pub fn add_SIGNATURE_TYPE(&mut self, SIGNATURE_TYPE: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_SIGNATURE_TYPE, SIGNATURE_TYPE);
  }
  #[inline]
  pub fn add_TIMESTAMP_SIGNATURE_TYPE(&mut self, TIMESTAMP_SIGNATURE_TYPE: flatbuffers::WIPOffset<&'b  str>) {
    self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(PNM::VT_TIMESTAMP_SIGNATURE_TYPE, TIMESTAMP_SIGNATURE_TYPE);
  }
  #[inline]
  pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>) -> PNMBuilder<'a, 'b, A> {
    let start = _fbb.start_table();
    PNMBuilder {
      fbb_: _fbb,
      start_: start,
    }
  }
  #[inline]
  pub fn finish(self) -> flatbuffers::WIPOffset<PNM<'a>> {
    let o = self.fbb_.end_table(self.start_);
    flatbuffers::WIPOffset::new(o.value())
  }
}

impl core::fmt::Debug for PNM<'_> {
  fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
    let mut ds = f.debug_struct("PNM");
      ds.field("MULTIFORMAT_ADDRESS", &self.MULTIFORMAT_ADDRESS());
      ds.field("PUBLISH_TIMESTAMP", &self.PUBLISH_TIMESTAMP());
      ds.field("CID", &self.CID());
      ds.field("FILE_NAME", &self.FILE_NAME());
      ds.field("FILE_ID", &self.FILE_ID());
      ds.field("SIGNATURE", &self.SIGNATURE());
      ds.field("TIMESTAMP_SIGNATURE", &self.TIMESTAMP_SIGNATURE());
      ds.field("SIGNATURE_TYPE", &self.SIGNATURE_TYPE());
      ds.field("TIMESTAMP_SIGNATURE_TYPE", &self.TIMESTAMP_SIGNATURE_TYPE());
      ds.finish()
  }
}
#[non_exhaustive]
#[derive(Debug, Clone, PartialEq)]
pub struct PNMT {
  pub MULTIFORMAT_ADDRESS: Option<String>,
  pub PUBLISH_TIMESTAMP: Option<String>,
  pub CID: Option<String>,
  pub FILE_NAME: Option<String>,
  pub FILE_ID: Option<String>,
  pub SIGNATURE: Option<String>,
  pub TIMESTAMP_SIGNATURE: Option<String>,
  pub SIGNATURE_TYPE: Option<String>,
  pub TIMESTAMP_SIGNATURE_TYPE: Option<String>,
}
impl Default for PNMT {
  fn default() -> Self {
    Self {
      MULTIFORMAT_ADDRESS: None,
      PUBLISH_TIMESTAMP: None,
      CID: None,
      FILE_NAME: None,
      FILE_ID: None,
      SIGNATURE: None,
      TIMESTAMP_SIGNATURE: None,
      SIGNATURE_TYPE: None,
      TIMESTAMP_SIGNATURE_TYPE: None,
    }
  }
}
impl PNMT {
  pub fn pack<'b, A: flatbuffers::Allocator + 'b>(
    &self,
    _fbb: &mut flatbuffers::FlatBufferBuilder<'b, A>
  ) -> flatbuffers::WIPOffset<PNM<'b>> {
    let MULTIFORMAT_ADDRESS = self.MULTIFORMAT_ADDRESS.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let PUBLISH_TIMESTAMP = self.PUBLISH_TIMESTAMP.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let CID = self.CID.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let FILE_NAME = self.FILE_NAME.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let FILE_ID = self.FILE_ID.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let SIGNATURE = self.SIGNATURE.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let TIMESTAMP_SIGNATURE = self.TIMESTAMP_SIGNATURE.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let SIGNATURE_TYPE = self.SIGNATURE_TYPE.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    let TIMESTAMP_SIGNATURE_TYPE = self.TIMESTAMP_SIGNATURE_TYPE.as_ref().map(|x|{
      _fbb.create_string(x)
    });
    PNM::create(_fbb, &PNMArgs{
      MULTIFORMAT_ADDRESS,
      PUBLISH_TIMESTAMP,
      CID,
      FILE_NAME,
      FILE_ID,
      SIGNATURE,
      TIMESTAMP_SIGNATURE,
      SIGNATURE_TYPE,
      TIMESTAMP_SIGNATURE_TYPE,
    })
  }
}
#[inline]
/// Verifies that a buffer of bytes contains a `PNM`
/// and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_PNM_unchecked`.
pub fn root_as_PNM(buf: &[u8]) -> Result<PNM, flatbuffers::InvalidFlatbuffer> {
  flatbuffers::root::<PNM>(buf)
}
#[inline]
/// Verifies that a buffer of bytes contains a size prefixed
/// `PNM` and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `size_prefixed_root_as_PNM_unchecked`.
pub fn size_prefixed_root_as_PNM(buf: &[u8]) -> Result<PNM, flatbuffers::InvalidFlatbuffer> {
  flatbuffers::size_prefixed_root::<PNM>(buf)
}
#[inline]
/// Verifies, with the given options, that a buffer of bytes
/// contains a `PNM` and returns it.
/// Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_PNM_unchecked`.
pub fn root_as_PNM_with_opts<'b, 'o>(
  opts: &'o flatbuffers::VerifierOptions,
  buf: &'b [u8],
) -> Result<PNM<'b>, flatbuffers::InvalidFlatbuffer> {
  flatbuffers::root_with_opts::<PNM<'b>>(opts, buf)
}
#[inline]
/// Verifies, with the given verifier options, that a buffer of
/// bytes contains a size prefixed `PNM` and returns
/// it. Note that verification is still experimental and may not
/// catch every error, or be maximally performant. For the
/// previous, unchecked, behavior use
/// `root_as_PNM_unchecked`.
pub fn size_prefixed_root_as_PNM_with_opts<'b, 'o>(
  opts: &'o flatbuffers::VerifierOptions,
  buf: &'b [u8],
) -> Result<PNM<'b>, flatbuffers::InvalidFlatbuffer> {
  flatbuffers::size_prefixed_root_with_opts::<PNM<'b>>(opts, buf)
}
#[inline]
/// Assumes, without verification, that a buffer of bytes contains a PNM and returns it.
/// # Safety
/// Callers must trust the given bytes do indeed contain a valid `PNM`.
pub unsafe fn root_as_PNM_unchecked(buf: &[u8]) -> PNM {
  flatbuffers::root_unchecked::<PNM>(buf)
}
#[inline]
/// Assumes, without verification, that a buffer of bytes contains a size prefixed PNM and returns it.
/// # Safety
/// Callers must trust the given bytes do indeed contain a valid size prefixed `PNM`.
pub unsafe fn size_prefixed_root_as_PNM_unchecked(buf: &[u8]) -> PNM {
  flatbuffers::size_prefixed_root_unchecked::<PNM>(buf)
}
pub const PNM_IDENTIFIER: &str = "$PNM";

#[inline]
pub fn PNM_buffer_has_identifier(buf: &[u8]) -> bool {
  flatbuffers::buffer_has_identifier(buf, PNM_IDENTIFIER, false)
}

#[inline]
pub fn PNM_size_prefixed_buffer_has_identifier(buf: &[u8]) -> bool {
  flatbuffers::buffer_has_identifier(buf, PNM_IDENTIFIER, true)
}

#[inline]
pub fn finish_PNM_buffer<'a, 'b, A: flatbuffers::Allocator + 'a>(
    fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>,
    root: flatbuffers::WIPOffset<PNM<'a>>) {
  fbb.finish(root, Some(PNM_IDENTIFIER));
}

#[inline]
pub fn finish_size_prefixed_PNM_buffer<'a, 'b, A: flatbuffers::Allocator + 'a>(fbb: &'b mut flatbuffers::FlatBufferBuilder<'a, A>, root: flatbuffers::WIPOffset<PNM<'a>>) {
  fbb.finish_size_prefixed(root, Some(PNM_IDENTIFIER));
}