vyre-primitives 0.4.1

Compositional primitives for vyre — marker types (always on) + Tier 2.5 LEGO substrate (feature-gated per domain).
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
pub mod vyre_primitives
pub mod vyre_primitives::range
#[non_exhaustive] #[repr(C)] pub struct vyre_primitives::range::ByteRange
pub vyre_primitives::range::ByteRange::end: u32
pub vyre_primitives::range::ByteRange::start: u32
pub vyre_primitives::range::ByteRange::tag: u32
impl vyre_primitives::range::ByteRange
pub const fn vyre_primitives::range::ByteRange::contains(&self, other: &vyre_primitives::range::ByteRange) -> bool
pub const fn vyre_primitives::range::ByteRange::ends_before(&self, other: &vyre_primitives::range::ByteRange) -> bool
pub const fn vyre_primitives::range::ByteRange::is_empty(&self) -> bool
pub const fn vyre_primitives::range::ByteRange::len(&self) -> u32
pub const fn vyre_primitives::range::ByteRange::new(tag: u32, start: u32, end: u32) -> Self
impl core::clone::Clone for vyre_primitives::range::ByteRange
pub fn vyre_primitives::range::ByteRange::clone(&self) -> vyre_primitives::range::ByteRange
impl core::cmp::Eq for vyre_primitives::range::ByteRange
impl core::cmp::Ord for vyre_primitives::range::ByteRange
pub fn vyre_primitives::range::ByteRange::cmp(&self, other: &vyre_primitives::range::ByteRange) -> core::cmp::Ordering
impl core::cmp::PartialEq for vyre_primitives::range::ByteRange
pub fn vyre_primitives::range::ByteRange::eq(&self, other: &vyre_primitives::range::ByteRange) -> bool
impl core::cmp::PartialOrd for vyre_primitives::range::ByteRange
pub fn vyre_primitives::range::ByteRange::partial_cmp(&self, other: &vyre_primitives::range::ByteRange) -> core::option::Option<core::cmp::Ordering>
impl core::fmt::Debug for vyre_primitives::range::ByteRange
pub fn vyre_primitives::range::ByteRange::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::range::ByteRange
pub fn vyre_primitives::range::ByteRange::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::range::ByteRange
impl core::marker::StructuralPartialEq for vyre_primitives::range::ByteRange
impl core::marker::Freeze for vyre_primitives::range::ByteRange
impl core::marker::Send for vyre_primitives::range::ByteRange
impl core::marker::Sync for vyre_primitives::range::ByteRange
impl core::marker::Unpin for vyre_primitives::range::ByteRange
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::range::ByteRange
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::range::ByteRange
impl<T, U> core::convert::Into<U> for vyre_primitives::range::ByteRange where U: core::convert::From<T>
pub fn vyre_primitives::range::ByteRange::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::range::ByteRange where U: core::convert::Into<T>
pub type vyre_primitives::range::ByteRange::Error = core::convert::Infallible
pub fn vyre_primitives::range::ByteRange::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::range::ByteRange where U: core::convert::TryFrom<T>
pub type vyre_primitives::range::ByteRange::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::range::ByteRange::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::range::ByteRange where T: core::clone::Clone
pub type vyre_primitives::range::ByteRange::Owned = T
pub fn vyre_primitives::range::ByteRange::clone_into(&self, target: &mut T)
pub fn vyre_primitives::range::ByteRange::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::range::ByteRange where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::range::ByteRange::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::range::ByteRange where T: ?core::marker::Sized
pub fn vyre_primitives::range::ByteRange::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::range::ByteRange where T: ?core::marker::Sized
pub fn vyre_primitives::range::ByteRange::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::range::ByteRange where T: core::clone::Clone
pub unsafe fn vyre_primitives::range::ByteRange::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::range::ByteRange
pub fn vyre_primitives::range::ByteRange::from(t: T) -> T
#[non_exhaustive] pub enum vyre_primitives::CombineOp
pub vyre_primitives::CombineOp::Add
pub vyre_primitives::CombineOp::BitAnd
pub vyre_primitives::CombineOp::BitOr
pub vyre_primitives::CombineOp::BitXor
pub vyre_primitives::CombineOp::Max
pub vyre_primitives::CombineOp::Min
pub vyre_primitives::CombineOp::Mul
impl core::clone::Clone for vyre_primitives::CombineOp
pub fn vyre_primitives::CombineOp::clone(&self) -> vyre_primitives::CombineOp
impl core::cmp::Eq for vyre_primitives::CombineOp
impl core::cmp::PartialEq for vyre_primitives::CombineOp
pub fn vyre_primitives::CombineOp::eq(&self, other: &vyre_primitives::CombineOp) -> bool
impl core::default::Default for vyre_primitives::CombineOp
pub fn vyre_primitives::CombineOp::default() -> vyre_primitives::CombineOp
impl core::fmt::Debug for vyre_primitives::CombineOp
pub fn vyre_primitives::CombineOp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::CombineOp
pub fn vyre_primitives::CombineOp::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::CombineOp
impl core::marker::StructuralPartialEq for vyre_primitives::CombineOp
impl core::marker::Freeze for vyre_primitives::CombineOp
impl core::marker::Send for vyre_primitives::CombineOp
impl core::marker::Sync for vyre_primitives::CombineOp
impl core::marker::Unpin for vyre_primitives::CombineOp
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::CombineOp
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::CombineOp
impl<T, U> core::convert::Into<U> for vyre_primitives::CombineOp where U: core::convert::From<T>
pub fn vyre_primitives::CombineOp::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::CombineOp where U: core::convert::Into<T>
pub type vyre_primitives::CombineOp::Error = core::convert::Infallible
pub fn vyre_primitives::CombineOp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::CombineOp where U: core::convert::TryFrom<T>
pub type vyre_primitives::CombineOp::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::CombineOp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::CombineOp where T: core::clone::Clone
pub type vyre_primitives::CombineOp::Owned = T
pub fn vyre_primitives::CombineOp::clone_into(&self, target: &mut T)
pub fn vyre_primitives::CombineOp::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::CombineOp where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::CombineOp::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::CombineOp where T: ?core::marker::Sized
pub fn vyre_primitives::CombineOp::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::CombineOp where T: ?core::marker::Sized
pub fn vyre_primitives::CombineOp::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::CombineOp where T: core::clone::Clone
pub unsafe fn vyre_primitives::CombineOp::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::CombineOp
pub fn vyre_primitives::CombineOp::from(t: T) -> T
pub struct vyre_primitives::ArithAdd
impl core::clone::Clone for vyre_primitives::ArithAdd
pub fn vyre_primitives::ArithAdd::clone(&self) -> vyre_primitives::ArithAdd
impl core::cmp::Eq for vyre_primitives::ArithAdd
impl core::cmp::PartialEq for vyre_primitives::ArithAdd
pub fn vyre_primitives::ArithAdd::eq(&self, other: &vyre_primitives::ArithAdd) -> bool
impl core::default::Default for vyre_primitives::ArithAdd
pub fn vyre_primitives::ArithAdd::default() -> vyre_primitives::ArithAdd
impl core::fmt::Debug for vyre_primitives::ArithAdd
pub fn vyre_primitives::ArithAdd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::ArithAdd
pub fn vyre_primitives::ArithAdd::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::ArithAdd
impl core::marker::StructuralPartialEq for vyre_primitives::ArithAdd
impl core::marker::Freeze for vyre_primitives::ArithAdd
impl core::marker::Send for vyre_primitives::ArithAdd
impl core::marker::Sync for vyre_primitives::ArithAdd
impl core::marker::Unpin for vyre_primitives::ArithAdd
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::ArithAdd
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::ArithAdd
impl<T, U> core::convert::Into<U> for vyre_primitives::ArithAdd where U: core::convert::From<T>
pub fn vyre_primitives::ArithAdd::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::ArithAdd where U: core::convert::Into<T>
pub type vyre_primitives::ArithAdd::Error = core::convert::Infallible
pub fn vyre_primitives::ArithAdd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::ArithAdd where U: core::convert::TryFrom<T>
pub type vyre_primitives::ArithAdd::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::ArithAdd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::ArithAdd where T: core::clone::Clone
pub type vyre_primitives::ArithAdd::Owned = T
pub fn vyre_primitives::ArithAdd::clone_into(&self, target: &mut T)
pub fn vyre_primitives::ArithAdd::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::ArithAdd where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::ArithAdd::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::ArithAdd where T: ?core::marker::Sized
pub fn vyre_primitives::ArithAdd::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::ArithAdd where T: ?core::marker::Sized
pub fn vyre_primitives::ArithAdd::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::ArithAdd where T: core::clone::Clone
pub unsafe fn vyre_primitives::ArithAdd::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::ArithAdd
pub fn vyre_primitives::ArithAdd::from(t: T) -> T
pub struct vyre_primitives::ArithMul
impl core::clone::Clone for vyre_primitives::ArithMul
pub fn vyre_primitives::ArithMul::clone(&self) -> vyre_primitives::ArithMul
impl core::cmp::Eq for vyre_primitives::ArithMul
impl core::cmp::PartialEq for vyre_primitives::ArithMul
pub fn vyre_primitives::ArithMul::eq(&self, other: &vyre_primitives::ArithMul) -> bool
impl core::default::Default for vyre_primitives::ArithMul
pub fn vyre_primitives::ArithMul::default() -> vyre_primitives::ArithMul
impl core::fmt::Debug for vyre_primitives::ArithMul
pub fn vyre_primitives::ArithMul::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::ArithMul
pub fn vyre_primitives::ArithMul::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::ArithMul
impl core::marker::StructuralPartialEq for vyre_primitives::ArithMul
impl core::marker::Freeze for vyre_primitives::ArithMul
impl core::marker::Send for vyre_primitives::ArithMul
impl core::marker::Sync for vyre_primitives::ArithMul
impl core::marker::Unpin for vyre_primitives::ArithMul
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::ArithMul
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::ArithMul
impl<T, U> core::convert::Into<U> for vyre_primitives::ArithMul where U: core::convert::From<T>
pub fn vyre_primitives::ArithMul::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::ArithMul where U: core::convert::Into<T>
pub type vyre_primitives::ArithMul::Error = core::convert::Infallible
pub fn vyre_primitives::ArithMul::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::ArithMul where U: core::convert::TryFrom<T>
pub type vyre_primitives::ArithMul::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::ArithMul::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::ArithMul where T: core::clone::Clone
pub type vyre_primitives::ArithMul::Owned = T
pub fn vyre_primitives::ArithMul::clone_into(&self, target: &mut T)
pub fn vyre_primitives::ArithMul::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::ArithMul where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::ArithMul::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::ArithMul where T: ?core::marker::Sized
pub fn vyre_primitives::ArithMul::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::ArithMul where T: ?core::marker::Sized
pub fn vyre_primitives::ArithMul::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::ArithMul where T: core::clone::Clone
pub unsafe fn vyre_primitives::ArithMul::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::ArithMul
pub fn vyre_primitives::ArithMul::from(t: T) -> T
pub struct vyre_primitives::BitwiseAnd
impl core::clone::Clone for vyre_primitives::BitwiseAnd
pub fn vyre_primitives::BitwiseAnd::clone(&self) -> vyre_primitives::BitwiseAnd
impl core::cmp::Eq for vyre_primitives::BitwiseAnd
impl core::cmp::PartialEq for vyre_primitives::BitwiseAnd
pub fn vyre_primitives::BitwiseAnd::eq(&self, other: &vyre_primitives::BitwiseAnd) -> bool
impl core::default::Default for vyre_primitives::BitwiseAnd
pub fn vyre_primitives::BitwiseAnd::default() -> vyre_primitives::BitwiseAnd
impl core::fmt::Debug for vyre_primitives::BitwiseAnd
pub fn vyre_primitives::BitwiseAnd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::BitwiseAnd
pub fn vyre_primitives::BitwiseAnd::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::BitwiseAnd
impl core::marker::StructuralPartialEq for vyre_primitives::BitwiseAnd
impl core::marker::Freeze for vyre_primitives::BitwiseAnd
impl core::marker::Send for vyre_primitives::BitwiseAnd
impl core::marker::Sync for vyre_primitives::BitwiseAnd
impl core::marker::Unpin for vyre_primitives::BitwiseAnd
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::BitwiseAnd
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::BitwiseAnd
impl<T, U> core::convert::Into<U> for vyre_primitives::BitwiseAnd where U: core::convert::From<T>
pub fn vyre_primitives::BitwiseAnd::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::BitwiseAnd where U: core::convert::Into<T>
pub type vyre_primitives::BitwiseAnd::Error = core::convert::Infallible
pub fn vyre_primitives::BitwiseAnd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::BitwiseAnd where U: core::convert::TryFrom<T>
pub type vyre_primitives::BitwiseAnd::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::BitwiseAnd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::BitwiseAnd where T: core::clone::Clone
pub type vyre_primitives::BitwiseAnd::Owned = T
pub fn vyre_primitives::BitwiseAnd::clone_into(&self, target: &mut T)
pub fn vyre_primitives::BitwiseAnd::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::BitwiseAnd where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::BitwiseAnd::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::BitwiseAnd where T: ?core::marker::Sized
pub fn vyre_primitives::BitwiseAnd::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::BitwiseAnd where T: ?core::marker::Sized
pub fn vyre_primitives::BitwiseAnd::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::BitwiseAnd where T: core::clone::Clone
pub unsafe fn vyre_primitives::BitwiseAnd::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::BitwiseAnd
pub fn vyre_primitives::BitwiseAnd::from(t: T) -> T
pub struct vyre_primitives::BitwiseOr
impl core::clone::Clone for vyre_primitives::BitwiseOr
pub fn vyre_primitives::BitwiseOr::clone(&self) -> vyre_primitives::BitwiseOr
impl core::cmp::Eq for vyre_primitives::BitwiseOr
impl core::cmp::PartialEq for vyre_primitives::BitwiseOr
pub fn vyre_primitives::BitwiseOr::eq(&self, other: &vyre_primitives::BitwiseOr) -> bool
impl core::default::Default for vyre_primitives::BitwiseOr
pub fn vyre_primitives::BitwiseOr::default() -> vyre_primitives::BitwiseOr
impl core::fmt::Debug for vyre_primitives::BitwiseOr
pub fn vyre_primitives::BitwiseOr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::BitwiseOr
pub fn vyre_primitives::BitwiseOr::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::BitwiseOr
impl core::marker::StructuralPartialEq for vyre_primitives::BitwiseOr
impl core::marker::Freeze for vyre_primitives::BitwiseOr
impl core::marker::Send for vyre_primitives::BitwiseOr
impl core::marker::Sync for vyre_primitives::BitwiseOr
impl core::marker::Unpin for vyre_primitives::BitwiseOr
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::BitwiseOr
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::BitwiseOr
impl<T, U> core::convert::Into<U> for vyre_primitives::BitwiseOr where U: core::convert::From<T>
pub fn vyre_primitives::BitwiseOr::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::BitwiseOr where U: core::convert::Into<T>
pub type vyre_primitives::BitwiseOr::Error = core::convert::Infallible
pub fn vyre_primitives::BitwiseOr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::BitwiseOr where U: core::convert::TryFrom<T>
pub type vyre_primitives::BitwiseOr::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::BitwiseOr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::BitwiseOr where T: core::clone::Clone
pub type vyre_primitives::BitwiseOr::Owned = T
pub fn vyre_primitives::BitwiseOr::clone_into(&self, target: &mut T)
pub fn vyre_primitives::BitwiseOr::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::BitwiseOr where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::BitwiseOr::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::BitwiseOr where T: ?core::marker::Sized
pub fn vyre_primitives::BitwiseOr::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::BitwiseOr where T: ?core::marker::Sized
pub fn vyre_primitives::BitwiseOr::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::BitwiseOr where T: core::clone::Clone
pub unsafe fn vyre_primitives::BitwiseOr::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::BitwiseOr
pub fn vyre_primitives::BitwiseOr::from(t: T) -> T
pub struct vyre_primitives::BitwiseXor
impl core::clone::Clone for vyre_primitives::BitwiseXor
pub fn vyre_primitives::BitwiseXor::clone(&self) -> vyre_primitives::BitwiseXor
impl core::cmp::Eq for vyre_primitives::BitwiseXor
impl core::cmp::PartialEq for vyre_primitives::BitwiseXor
pub fn vyre_primitives::BitwiseXor::eq(&self, other: &vyre_primitives::BitwiseXor) -> bool
impl core::default::Default for vyre_primitives::BitwiseXor
pub fn vyre_primitives::BitwiseXor::default() -> vyre_primitives::BitwiseXor
impl core::fmt::Debug for vyre_primitives::BitwiseXor
pub fn vyre_primitives::BitwiseXor::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::BitwiseXor
pub fn vyre_primitives::BitwiseXor::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::BitwiseXor
impl core::marker::StructuralPartialEq for vyre_primitives::BitwiseXor
impl core::marker::Freeze for vyre_primitives::BitwiseXor
impl core::marker::Send for vyre_primitives::BitwiseXor
impl core::marker::Sync for vyre_primitives::BitwiseXor
impl core::marker::Unpin for vyre_primitives::BitwiseXor
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::BitwiseXor
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::BitwiseXor
impl<T, U> core::convert::Into<U> for vyre_primitives::BitwiseXor where U: core::convert::From<T>
pub fn vyre_primitives::BitwiseXor::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::BitwiseXor where U: core::convert::Into<T>
pub type vyre_primitives::BitwiseXor::Error = core::convert::Infallible
pub fn vyre_primitives::BitwiseXor::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::BitwiseXor where U: core::convert::TryFrom<T>
pub type vyre_primitives::BitwiseXor::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::BitwiseXor::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::BitwiseXor where T: core::clone::Clone
pub type vyre_primitives::BitwiseXor::Owned = T
pub fn vyre_primitives::BitwiseXor::clone_into(&self, target: &mut T)
pub fn vyre_primitives::BitwiseXor::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::BitwiseXor where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::BitwiseXor::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::BitwiseXor where T: ?core::marker::Sized
pub fn vyre_primitives::BitwiseXor::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::BitwiseXor where T: ?core::marker::Sized
pub fn vyre_primitives::BitwiseXor::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::BitwiseXor where T: core::clone::Clone
pub unsafe fn vyre_primitives::BitwiseXor::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::BitwiseXor
pub fn vyre_primitives::BitwiseXor::from(t: T) -> T
pub struct vyre_primitives::Clz
impl core::clone::Clone for vyre_primitives::Clz
pub fn vyre_primitives::Clz::clone(&self) -> vyre_primitives::Clz
impl core::cmp::Eq for vyre_primitives::Clz
impl core::cmp::PartialEq for vyre_primitives::Clz
pub fn vyre_primitives::Clz::eq(&self, other: &vyre_primitives::Clz) -> bool
impl core::default::Default for vyre_primitives::Clz
pub fn vyre_primitives::Clz::default() -> vyre_primitives::Clz
impl core::fmt::Debug for vyre_primitives::Clz
pub fn vyre_primitives::Clz::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::Clz
pub fn vyre_primitives::Clz::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::Clz
impl core::marker::StructuralPartialEq for vyre_primitives::Clz
impl core::marker::Freeze for vyre_primitives::Clz
impl core::marker::Send for vyre_primitives::Clz
impl core::marker::Sync for vyre_primitives::Clz
impl core::marker::Unpin for vyre_primitives::Clz
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::Clz
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::Clz
impl<T, U> core::convert::Into<U> for vyre_primitives::Clz where U: core::convert::From<T>
pub fn vyre_primitives::Clz::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::Clz where U: core::convert::Into<T>
pub type vyre_primitives::Clz::Error = core::convert::Infallible
pub fn vyre_primitives::Clz::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::Clz where U: core::convert::TryFrom<T>
pub type vyre_primitives::Clz::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::Clz::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::Clz where T: core::clone::Clone
pub type vyre_primitives::Clz::Owned = T
pub fn vyre_primitives::Clz::clone_into(&self, target: &mut T)
pub fn vyre_primitives::Clz::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::Clz where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::Clz::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::Clz where T: ?core::marker::Sized
pub fn vyre_primitives::Clz::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::Clz where T: ?core::marker::Sized
pub fn vyre_primitives::Clz::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::Clz where T: core::clone::Clone
pub unsafe fn vyre_primitives::Clz::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::Clz
pub fn vyre_primitives::Clz::from(t: T) -> T
pub struct vyre_primitives::CompareEq
impl core::clone::Clone for vyre_primitives::CompareEq
pub fn vyre_primitives::CompareEq::clone(&self) -> vyre_primitives::CompareEq
impl core::cmp::Eq for vyre_primitives::CompareEq
impl core::cmp::PartialEq for vyre_primitives::CompareEq
pub fn vyre_primitives::CompareEq::eq(&self, other: &vyre_primitives::CompareEq) -> bool
impl core::default::Default for vyre_primitives::CompareEq
pub fn vyre_primitives::CompareEq::default() -> vyre_primitives::CompareEq
impl core::fmt::Debug for vyre_primitives::CompareEq
pub fn vyre_primitives::CompareEq::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::CompareEq
pub fn vyre_primitives::CompareEq::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::CompareEq
impl core::marker::StructuralPartialEq for vyre_primitives::CompareEq
impl core::marker::Freeze for vyre_primitives::CompareEq
impl core::marker::Send for vyre_primitives::CompareEq
impl core::marker::Sync for vyre_primitives::CompareEq
impl core::marker::Unpin for vyre_primitives::CompareEq
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::CompareEq
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::CompareEq
impl<T, U> core::convert::Into<U> for vyre_primitives::CompareEq where U: core::convert::From<T>
pub fn vyre_primitives::CompareEq::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::CompareEq where U: core::convert::Into<T>
pub type vyre_primitives::CompareEq::Error = core::convert::Infallible
pub fn vyre_primitives::CompareEq::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::CompareEq where U: core::convert::TryFrom<T>
pub type vyre_primitives::CompareEq::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::CompareEq::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::CompareEq where T: core::clone::Clone
pub type vyre_primitives::CompareEq::Owned = T
pub fn vyre_primitives::CompareEq::clone_into(&self, target: &mut T)
pub fn vyre_primitives::CompareEq::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::CompareEq where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::CompareEq::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::CompareEq where T: ?core::marker::Sized
pub fn vyre_primitives::CompareEq::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::CompareEq where T: ?core::marker::Sized
pub fn vyre_primitives::CompareEq::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::CompareEq where T: core::clone::Clone
pub unsafe fn vyre_primitives::CompareEq::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::CompareEq
pub fn vyre_primitives::CompareEq::from(t: T) -> T
pub struct vyre_primitives::CompareLt
impl core::clone::Clone for vyre_primitives::CompareLt
pub fn vyre_primitives::CompareLt::clone(&self) -> vyre_primitives::CompareLt
impl core::cmp::Eq for vyre_primitives::CompareLt
impl core::cmp::PartialEq for vyre_primitives::CompareLt
pub fn vyre_primitives::CompareLt::eq(&self, other: &vyre_primitives::CompareLt) -> bool
impl core::default::Default for vyre_primitives::CompareLt
pub fn vyre_primitives::CompareLt::default() -> vyre_primitives::CompareLt
impl core::fmt::Debug for vyre_primitives::CompareLt
pub fn vyre_primitives::CompareLt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::CompareLt
pub fn vyre_primitives::CompareLt::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::CompareLt
impl core::marker::StructuralPartialEq for vyre_primitives::CompareLt
impl core::marker::Freeze for vyre_primitives::CompareLt
impl core::marker::Send for vyre_primitives::CompareLt
impl core::marker::Sync for vyre_primitives::CompareLt
impl core::marker::Unpin for vyre_primitives::CompareLt
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::CompareLt
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::CompareLt
impl<T, U> core::convert::Into<U> for vyre_primitives::CompareLt where U: core::convert::From<T>
pub fn vyre_primitives::CompareLt::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::CompareLt where U: core::convert::Into<T>
pub type vyre_primitives::CompareLt::Error = core::convert::Infallible
pub fn vyre_primitives::CompareLt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::CompareLt where U: core::convert::TryFrom<T>
pub type vyre_primitives::CompareLt::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::CompareLt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::CompareLt where T: core::clone::Clone
pub type vyre_primitives::CompareLt::Owned = T
pub fn vyre_primitives::CompareLt::clone_into(&self, target: &mut T)
pub fn vyre_primitives::CompareLt::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::CompareLt where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::CompareLt::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::CompareLt where T: ?core::marker::Sized
pub fn vyre_primitives::CompareLt::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::CompareLt where T: ?core::marker::Sized
pub fn vyre_primitives::CompareLt::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::CompareLt where T: core::clone::Clone
pub unsafe fn vyre_primitives::CompareLt::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::CompareLt
pub fn vyre_primitives::CompareLt::from(t: T) -> T
pub struct vyre_primitives::Gather
impl core::clone::Clone for vyre_primitives::Gather
pub fn vyre_primitives::Gather::clone(&self) -> vyre_primitives::Gather
impl core::cmp::Eq for vyre_primitives::Gather
impl core::cmp::PartialEq for vyre_primitives::Gather
pub fn vyre_primitives::Gather::eq(&self, other: &vyre_primitives::Gather) -> bool
impl core::default::Default for vyre_primitives::Gather
pub fn vyre_primitives::Gather::default() -> vyre_primitives::Gather
impl core::fmt::Debug for vyre_primitives::Gather
pub fn vyre_primitives::Gather::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::Gather
pub fn vyre_primitives::Gather::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::Gather
impl core::marker::StructuralPartialEq for vyre_primitives::Gather
impl core::marker::Freeze for vyre_primitives::Gather
impl core::marker::Send for vyre_primitives::Gather
impl core::marker::Sync for vyre_primitives::Gather
impl core::marker::Unpin for vyre_primitives::Gather
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::Gather
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::Gather
impl<T, U> core::convert::Into<U> for vyre_primitives::Gather where U: core::convert::From<T>
pub fn vyre_primitives::Gather::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::Gather where U: core::convert::Into<T>
pub type vyre_primitives::Gather::Error = core::convert::Infallible
pub fn vyre_primitives::Gather::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::Gather where U: core::convert::TryFrom<T>
pub type vyre_primitives::Gather::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::Gather::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::Gather where T: core::clone::Clone
pub type vyre_primitives::Gather::Owned = T
pub fn vyre_primitives::Gather::clone_into(&self, target: &mut T)
pub fn vyre_primitives::Gather::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::Gather where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::Gather::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::Gather where T: ?core::marker::Sized
pub fn vyre_primitives::Gather::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::Gather where T: ?core::marker::Sized
pub fn vyre_primitives::Gather::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::Gather where T: core::clone::Clone
pub unsafe fn vyre_primitives::Gather::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::Gather
pub fn vyre_primitives::Gather::from(t: T) -> T
pub struct vyre_primitives::HashBlake3
impl core::clone::Clone for vyre_primitives::HashBlake3
pub fn vyre_primitives::HashBlake3::clone(&self) -> vyre_primitives::HashBlake3
impl core::cmp::Eq for vyre_primitives::HashBlake3
impl core::cmp::PartialEq for vyre_primitives::HashBlake3
pub fn vyre_primitives::HashBlake3::eq(&self, other: &vyre_primitives::HashBlake3) -> bool
impl core::default::Default for vyre_primitives::HashBlake3
pub fn vyre_primitives::HashBlake3::default() -> vyre_primitives::HashBlake3
impl core::fmt::Debug for vyre_primitives::HashBlake3
pub fn vyre_primitives::HashBlake3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::HashBlake3
pub fn vyre_primitives::HashBlake3::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::HashBlake3
impl core::marker::StructuralPartialEq for vyre_primitives::HashBlake3
impl core::marker::Freeze for vyre_primitives::HashBlake3
impl core::marker::Send for vyre_primitives::HashBlake3
impl core::marker::Sync for vyre_primitives::HashBlake3
impl core::marker::Unpin for vyre_primitives::HashBlake3
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::HashBlake3
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::HashBlake3
impl<T, U> core::convert::Into<U> for vyre_primitives::HashBlake3 where U: core::convert::From<T>
pub fn vyre_primitives::HashBlake3::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::HashBlake3 where U: core::convert::Into<T>
pub type vyre_primitives::HashBlake3::Error = core::convert::Infallible
pub fn vyre_primitives::HashBlake3::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::HashBlake3 where U: core::convert::TryFrom<T>
pub type vyre_primitives::HashBlake3::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::HashBlake3::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::HashBlake3 where T: core::clone::Clone
pub type vyre_primitives::HashBlake3::Owned = T
pub fn vyre_primitives::HashBlake3::clone_into(&self, target: &mut T)
pub fn vyre_primitives::HashBlake3::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::HashBlake3 where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::HashBlake3::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::HashBlake3 where T: ?core::marker::Sized
pub fn vyre_primitives::HashBlake3::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::HashBlake3 where T: ?core::marker::Sized
pub fn vyre_primitives::HashBlake3::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::HashBlake3 where T: core::clone::Clone
pub unsafe fn vyre_primitives::HashBlake3::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::HashBlake3
pub fn vyre_primitives::HashBlake3::from(t: T) -> T
pub struct vyre_primitives::HashFnv1a
impl core::clone::Clone for vyre_primitives::HashFnv1a
pub fn vyre_primitives::HashFnv1a::clone(&self) -> vyre_primitives::HashFnv1a
impl core::cmp::Eq for vyre_primitives::HashFnv1a
impl core::cmp::PartialEq for vyre_primitives::HashFnv1a
pub fn vyre_primitives::HashFnv1a::eq(&self, other: &vyre_primitives::HashFnv1a) -> bool
impl core::default::Default for vyre_primitives::HashFnv1a
pub fn vyre_primitives::HashFnv1a::default() -> vyre_primitives::HashFnv1a
impl core::fmt::Debug for vyre_primitives::HashFnv1a
pub fn vyre_primitives::HashFnv1a::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::HashFnv1a
pub fn vyre_primitives::HashFnv1a::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::HashFnv1a
impl core::marker::StructuralPartialEq for vyre_primitives::HashFnv1a
impl core::marker::Freeze for vyre_primitives::HashFnv1a
impl core::marker::Send for vyre_primitives::HashFnv1a
impl core::marker::Sync for vyre_primitives::HashFnv1a
impl core::marker::Unpin for vyre_primitives::HashFnv1a
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::HashFnv1a
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::HashFnv1a
impl<T, U> core::convert::Into<U> for vyre_primitives::HashFnv1a where U: core::convert::From<T>
pub fn vyre_primitives::HashFnv1a::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::HashFnv1a where U: core::convert::Into<T>
pub type vyre_primitives::HashFnv1a::Error = core::convert::Infallible
pub fn vyre_primitives::HashFnv1a::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::HashFnv1a where U: core::convert::TryFrom<T>
pub type vyre_primitives::HashFnv1a::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::HashFnv1a::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::HashFnv1a where T: core::clone::Clone
pub type vyre_primitives::HashFnv1a::Owned = T
pub fn vyre_primitives::HashFnv1a::clone_into(&self, target: &mut T)
pub fn vyre_primitives::HashFnv1a::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::HashFnv1a where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::HashFnv1a::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::HashFnv1a where T: ?core::marker::Sized
pub fn vyre_primitives::HashFnv1a::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::HashFnv1a where T: ?core::marker::Sized
pub fn vyre_primitives::HashFnv1a::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::HashFnv1a where T: core::clone::Clone
pub unsafe fn vyre_primitives::HashFnv1a::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::HashFnv1a
pub fn vyre_primitives::HashFnv1a::from(t: T) -> T
pub struct vyre_primitives::PatternMatchDfa
pub vyre_primitives::PatternMatchDfa::dfa: alloc::vec::Vec<u8>
impl core::clone::Clone for vyre_primitives::PatternMatchDfa
pub fn vyre_primitives::PatternMatchDfa::clone(&self) -> vyre_primitives::PatternMatchDfa
impl core::cmp::Eq for vyre_primitives::PatternMatchDfa
impl core::cmp::PartialEq for vyre_primitives::PatternMatchDfa
pub fn vyre_primitives::PatternMatchDfa::eq(&self, other: &vyre_primitives::PatternMatchDfa) -> bool
impl core::default::Default for vyre_primitives::PatternMatchDfa
pub fn vyre_primitives::PatternMatchDfa::default() -> vyre_primitives::PatternMatchDfa
impl core::fmt::Debug for vyre_primitives::PatternMatchDfa
pub fn vyre_primitives::PatternMatchDfa::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::PatternMatchDfa
pub fn vyre_primitives::PatternMatchDfa::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::StructuralPartialEq for vyre_primitives::PatternMatchDfa
impl core::marker::Freeze for vyre_primitives::PatternMatchDfa
impl core::marker::Send for vyre_primitives::PatternMatchDfa
impl core::marker::Sync for vyre_primitives::PatternMatchDfa
impl core::marker::Unpin for vyre_primitives::PatternMatchDfa
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::PatternMatchDfa
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::PatternMatchDfa
impl<T, U> core::convert::Into<U> for vyre_primitives::PatternMatchDfa where U: core::convert::From<T>
pub fn vyre_primitives::PatternMatchDfa::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::PatternMatchDfa where U: core::convert::Into<T>
pub type vyre_primitives::PatternMatchDfa::Error = core::convert::Infallible
pub fn vyre_primitives::PatternMatchDfa::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::PatternMatchDfa where U: core::convert::TryFrom<T>
pub type vyre_primitives::PatternMatchDfa::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::PatternMatchDfa::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::PatternMatchDfa where T: core::clone::Clone
pub type vyre_primitives::PatternMatchDfa::Owned = T
pub fn vyre_primitives::PatternMatchDfa::clone_into(&self, target: &mut T)
pub fn vyre_primitives::PatternMatchDfa::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::PatternMatchDfa where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::PatternMatchDfa::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::PatternMatchDfa where T: ?core::marker::Sized
pub fn vyre_primitives::PatternMatchDfa::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::PatternMatchDfa where T: ?core::marker::Sized
pub fn vyre_primitives::PatternMatchDfa::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::PatternMatchDfa where T: core::clone::Clone
pub unsafe fn vyre_primitives::PatternMatchDfa::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::PatternMatchDfa
pub fn vyre_primitives::PatternMatchDfa::from(t: T) -> T
pub struct vyre_primitives::PatternMatchLiteral
pub vyre_primitives::PatternMatchLiteral::literal: alloc::vec::Vec<u8>
impl core::clone::Clone for vyre_primitives::PatternMatchLiteral
pub fn vyre_primitives::PatternMatchLiteral::clone(&self) -> vyre_primitives::PatternMatchLiteral
impl core::cmp::Eq for vyre_primitives::PatternMatchLiteral
impl core::cmp::PartialEq for vyre_primitives::PatternMatchLiteral
pub fn vyre_primitives::PatternMatchLiteral::eq(&self, other: &vyre_primitives::PatternMatchLiteral) -> bool
impl core::default::Default for vyre_primitives::PatternMatchLiteral
pub fn vyre_primitives::PatternMatchLiteral::default() -> vyre_primitives::PatternMatchLiteral
impl core::fmt::Debug for vyre_primitives::PatternMatchLiteral
pub fn vyre_primitives::PatternMatchLiteral::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::PatternMatchLiteral
pub fn vyre_primitives::PatternMatchLiteral::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::StructuralPartialEq for vyre_primitives::PatternMatchLiteral
impl core::marker::Freeze for vyre_primitives::PatternMatchLiteral
impl core::marker::Send for vyre_primitives::PatternMatchLiteral
impl core::marker::Sync for vyre_primitives::PatternMatchLiteral
impl core::marker::Unpin for vyre_primitives::PatternMatchLiteral
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::PatternMatchLiteral
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::PatternMatchLiteral
impl<T, U> core::convert::Into<U> for vyre_primitives::PatternMatchLiteral where U: core::convert::From<T>
pub fn vyre_primitives::PatternMatchLiteral::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::PatternMatchLiteral where U: core::convert::Into<T>
pub type vyre_primitives::PatternMatchLiteral::Error = core::convert::Infallible
pub fn vyre_primitives::PatternMatchLiteral::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::PatternMatchLiteral where U: core::convert::TryFrom<T>
pub type vyre_primitives::PatternMatchLiteral::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::PatternMatchLiteral::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::PatternMatchLiteral where T: core::clone::Clone
pub type vyre_primitives::PatternMatchLiteral::Owned = T
pub fn vyre_primitives::PatternMatchLiteral::clone_into(&self, target: &mut T)
pub fn vyre_primitives::PatternMatchLiteral::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::PatternMatchLiteral where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::PatternMatchLiteral::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::PatternMatchLiteral where T: ?core::marker::Sized
pub fn vyre_primitives::PatternMatchLiteral::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::PatternMatchLiteral where T: ?core::marker::Sized
pub fn vyre_primitives::PatternMatchLiteral::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::PatternMatchLiteral where T: core::clone::Clone
pub unsafe fn vyre_primitives::PatternMatchLiteral::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::PatternMatchLiteral
pub fn vyre_primitives::PatternMatchLiteral::from(t: T) -> T
pub struct vyre_primitives::Popcount
impl core::clone::Clone for vyre_primitives::Popcount
pub fn vyre_primitives::Popcount::clone(&self) -> vyre_primitives::Popcount
impl core::cmp::Eq for vyre_primitives::Popcount
impl core::cmp::PartialEq for vyre_primitives::Popcount
pub fn vyre_primitives::Popcount::eq(&self, other: &vyre_primitives::Popcount) -> bool
impl core::default::Default for vyre_primitives::Popcount
pub fn vyre_primitives::Popcount::default() -> vyre_primitives::Popcount
impl core::fmt::Debug for vyre_primitives::Popcount
pub fn vyre_primitives::Popcount::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::Popcount
pub fn vyre_primitives::Popcount::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::Popcount
impl core::marker::StructuralPartialEq for vyre_primitives::Popcount
impl core::marker::Freeze for vyre_primitives::Popcount
impl core::marker::Send for vyre_primitives::Popcount
impl core::marker::Sync for vyre_primitives::Popcount
impl core::marker::Unpin for vyre_primitives::Popcount
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::Popcount
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::Popcount
impl<T, U> core::convert::Into<U> for vyre_primitives::Popcount where U: core::convert::From<T>
pub fn vyre_primitives::Popcount::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::Popcount where U: core::convert::Into<T>
pub type vyre_primitives::Popcount::Error = core::convert::Infallible
pub fn vyre_primitives::Popcount::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::Popcount where U: core::convert::TryFrom<T>
pub type vyre_primitives::Popcount::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::Popcount::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::Popcount where T: core::clone::Clone
pub type vyre_primitives::Popcount::Owned = T
pub fn vyre_primitives::Popcount::clone_into(&self, target: &mut T)
pub fn vyre_primitives::Popcount::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::Popcount where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::Popcount::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::Popcount where T: ?core::marker::Sized
pub fn vyre_primitives::Popcount::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::Popcount where T: ?core::marker::Sized
pub fn vyre_primitives::Popcount::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::Popcount where T: core::clone::Clone
pub unsafe fn vyre_primitives::Popcount::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::Popcount
pub fn vyre_primitives::Popcount::from(t: T) -> T
pub struct vyre_primitives::Reduce
pub vyre_primitives::Reduce::combine: vyre_primitives::CombineOp
impl core::clone::Clone for vyre_primitives::Reduce
pub fn vyre_primitives::Reduce::clone(&self) -> vyre_primitives::Reduce
impl core::cmp::Eq for vyre_primitives::Reduce
impl core::cmp::PartialEq for vyre_primitives::Reduce
pub fn vyre_primitives::Reduce::eq(&self, other: &vyre_primitives::Reduce) -> bool
impl core::default::Default for vyre_primitives::Reduce
pub fn vyre_primitives::Reduce::default() -> vyre_primitives::Reduce
impl core::fmt::Debug for vyre_primitives::Reduce
pub fn vyre_primitives::Reduce::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::Reduce
pub fn vyre_primitives::Reduce::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::Reduce
impl core::marker::StructuralPartialEq for vyre_primitives::Reduce
impl core::marker::Freeze for vyre_primitives::Reduce
impl core::marker::Send for vyre_primitives::Reduce
impl core::marker::Sync for vyre_primitives::Reduce
impl core::marker::Unpin for vyre_primitives::Reduce
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::Reduce
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::Reduce
impl<T, U> core::convert::Into<U> for vyre_primitives::Reduce where U: core::convert::From<T>
pub fn vyre_primitives::Reduce::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::Reduce where U: core::convert::Into<T>
pub type vyre_primitives::Reduce::Error = core::convert::Infallible
pub fn vyre_primitives::Reduce::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::Reduce where U: core::convert::TryFrom<T>
pub type vyre_primitives::Reduce::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::Reduce::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::Reduce where T: core::clone::Clone
pub type vyre_primitives::Reduce::Owned = T
pub fn vyre_primitives::Reduce::clone_into(&self, target: &mut T)
pub fn vyre_primitives::Reduce::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::Reduce where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::Reduce::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::Reduce where T: ?core::marker::Sized
pub fn vyre_primitives::Reduce::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::Reduce where T: ?core::marker::Sized
pub fn vyre_primitives::Reduce::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::Reduce where T: core::clone::Clone
pub unsafe fn vyre_primitives::Reduce::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::Reduce
pub fn vyre_primitives::Reduce::from(t: T) -> T
pub struct vyre_primitives::RegionId(pub u32)
impl core::clone::Clone for vyre_primitives::RegionId
pub fn vyre_primitives::RegionId::clone(&self) -> vyre_primitives::RegionId
impl core::cmp::Eq for vyre_primitives::RegionId
impl core::cmp::Ord for vyre_primitives::RegionId
pub fn vyre_primitives::RegionId::cmp(&self, other: &vyre_primitives::RegionId) -> core::cmp::Ordering
impl core::cmp::PartialEq for vyre_primitives::RegionId
pub fn vyre_primitives::RegionId::eq(&self, other: &vyre_primitives::RegionId) -> bool
impl core::cmp::PartialOrd for vyre_primitives::RegionId
pub fn vyre_primitives::RegionId::partial_cmp(&self, other: &vyre_primitives::RegionId) -> core::option::Option<core::cmp::Ordering>
impl core::fmt::Debug for vyre_primitives::RegionId
pub fn vyre_primitives::RegionId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::RegionId
pub fn vyre_primitives::RegionId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::RegionId
impl core::marker::StructuralPartialEq for vyre_primitives::RegionId
impl core::marker::Freeze for vyre_primitives::RegionId
impl core::marker::Send for vyre_primitives::RegionId
impl core::marker::Sync for vyre_primitives::RegionId
impl core::marker::Unpin for vyre_primitives::RegionId
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::RegionId
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::RegionId
impl<T, U> core::convert::Into<U> for vyre_primitives::RegionId where U: core::convert::From<T>
pub fn vyre_primitives::RegionId::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::RegionId where U: core::convert::Into<T>
pub type vyre_primitives::RegionId::Error = core::convert::Infallible
pub fn vyre_primitives::RegionId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::RegionId where U: core::convert::TryFrom<T>
pub type vyre_primitives::RegionId::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::RegionId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::RegionId where T: core::clone::Clone
pub type vyre_primitives::RegionId::Owned = T
pub fn vyre_primitives::RegionId::clone_into(&self, target: &mut T)
pub fn vyre_primitives::RegionId::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::RegionId where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::RegionId::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::RegionId where T: ?core::marker::Sized
pub fn vyre_primitives::RegionId::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::RegionId where T: ?core::marker::Sized
pub fn vyre_primitives::RegionId::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::RegionId where T: core::clone::Clone
pub unsafe fn vyre_primitives::RegionId::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::RegionId
pub fn vyre_primitives::RegionId::from(t: T) -> T
pub struct vyre_primitives::Scan
pub vyre_primitives::Scan::combine: vyre_primitives::CombineOp
impl core::clone::Clone for vyre_primitives::Scan
pub fn vyre_primitives::Scan::clone(&self) -> vyre_primitives::Scan
impl core::cmp::Eq for vyre_primitives::Scan
impl core::cmp::PartialEq for vyre_primitives::Scan
pub fn vyre_primitives::Scan::eq(&self, other: &vyre_primitives::Scan) -> bool
impl core::default::Default for vyre_primitives::Scan
pub fn vyre_primitives::Scan::default() -> vyre_primitives::Scan
impl core::fmt::Debug for vyre_primitives::Scan
pub fn vyre_primitives::Scan::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::Scan
pub fn vyre_primitives::Scan::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::Scan
impl core::marker::StructuralPartialEq for vyre_primitives::Scan
impl core::marker::Freeze for vyre_primitives::Scan
impl core::marker::Send for vyre_primitives::Scan
impl core::marker::Sync for vyre_primitives::Scan
impl core::marker::Unpin for vyre_primitives::Scan
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::Scan
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::Scan
impl<T, U> core::convert::Into<U> for vyre_primitives::Scan where U: core::convert::From<T>
pub fn vyre_primitives::Scan::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::Scan where U: core::convert::Into<T>
pub type vyre_primitives::Scan::Error = core::convert::Infallible
pub fn vyre_primitives::Scan::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::Scan where U: core::convert::TryFrom<T>
pub type vyre_primitives::Scan::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::Scan::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::Scan where T: core::clone::Clone
pub type vyre_primitives::Scan::Owned = T
pub fn vyre_primitives::Scan::clone_into(&self, target: &mut T)
pub fn vyre_primitives::Scan::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::Scan where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::Scan::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::Scan where T: ?core::marker::Sized
pub fn vyre_primitives::Scan::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::Scan where T: ?core::marker::Sized
pub fn vyre_primitives::Scan::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::Scan where T: core::clone::Clone
pub unsafe fn vyre_primitives::Scan::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::Scan
pub fn vyre_primitives::Scan::from(t: T) -> T
pub struct vyre_primitives::Scatter
impl core::clone::Clone for vyre_primitives::Scatter
pub fn vyre_primitives::Scatter::clone(&self) -> vyre_primitives::Scatter
impl core::cmp::Eq for vyre_primitives::Scatter
impl core::cmp::PartialEq for vyre_primitives::Scatter
pub fn vyre_primitives::Scatter::eq(&self, other: &vyre_primitives::Scatter) -> bool
impl core::default::Default for vyre_primitives::Scatter
pub fn vyre_primitives::Scatter::default() -> vyre_primitives::Scatter
impl core::fmt::Debug for vyre_primitives::Scatter
pub fn vyre_primitives::Scatter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::Scatter
pub fn vyre_primitives::Scatter::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::Scatter
impl core::marker::StructuralPartialEq for vyre_primitives::Scatter
impl core::marker::Freeze for vyre_primitives::Scatter
impl core::marker::Send for vyre_primitives::Scatter
impl core::marker::Sync for vyre_primitives::Scatter
impl core::marker::Unpin for vyre_primitives::Scatter
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::Scatter
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::Scatter
impl<T, U> core::convert::Into<U> for vyre_primitives::Scatter where U: core::convert::From<T>
pub fn vyre_primitives::Scatter::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::Scatter where U: core::convert::Into<T>
pub type vyre_primitives::Scatter::Error = core::convert::Infallible
pub fn vyre_primitives::Scatter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::Scatter where U: core::convert::TryFrom<T>
pub type vyre_primitives::Scatter::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::Scatter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::Scatter where T: core::clone::Clone
pub type vyre_primitives::Scatter::Owned = T
pub fn vyre_primitives::Scatter::clone_into(&self, target: &mut T)
pub fn vyre_primitives::Scatter::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::Scatter where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::Scatter::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::Scatter where T: ?core::marker::Sized
pub fn vyre_primitives::Scatter::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::Scatter where T: ?core::marker::Sized
pub fn vyre_primitives::Scatter::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::Scatter where T: core::clone::Clone
pub unsafe fn vyre_primitives::Scatter::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::Scatter
pub fn vyre_primitives::Scatter::from(t: T) -> T
pub struct vyre_primitives::ShiftLeft
impl core::clone::Clone for vyre_primitives::ShiftLeft
pub fn vyre_primitives::ShiftLeft::clone(&self) -> vyre_primitives::ShiftLeft
impl core::cmp::Eq for vyre_primitives::ShiftLeft
impl core::cmp::PartialEq for vyre_primitives::ShiftLeft
pub fn vyre_primitives::ShiftLeft::eq(&self, other: &vyre_primitives::ShiftLeft) -> bool
impl core::default::Default for vyre_primitives::ShiftLeft
pub fn vyre_primitives::ShiftLeft::default() -> vyre_primitives::ShiftLeft
impl core::fmt::Debug for vyre_primitives::ShiftLeft
pub fn vyre_primitives::ShiftLeft::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::ShiftLeft
pub fn vyre_primitives::ShiftLeft::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::ShiftLeft
impl core::marker::StructuralPartialEq for vyre_primitives::ShiftLeft
impl core::marker::Freeze for vyre_primitives::ShiftLeft
impl core::marker::Send for vyre_primitives::ShiftLeft
impl core::marker::Sync for vyre_primitives::ShiftLeft
impl core::marker::Unpin for vyre_primitives::ShiftLeft
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::ShiftLeft
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::ShiftLeft
impl<T, U> core::convert::Into<U> for vyre_primitives::ShiftLeft where U: core::convert::From<T>
pub fn vyre_primitives::ShiftLeft::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::ShiftLeft where U: core::convert::Into<T>
pub type vyre_primitives::ShiftLeft::Error = core::convert::Infallible
pub fn vyre_primitives::ShiftLeft::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::ShiftLeft where U: core::convert::TryFrom<T>
pub type vyre_primitives::ShiftLeft::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::ShiftLeft::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::ShiftLeft where T: core::clone::Clone
pub type vyre_primitives::ShiftLeft::Owned = T
pub fn vyre_primitives::ShiftLeft::clone_into(&self, target: &mut T)
pub fn vyre_primitives::ShiftLeft::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::ShiftLeft where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::ShiftLeft::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::ShiftLeft where T: ?core::marker::Sized
pub fn vyre_primitives::ShiftLeft::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::ShiftLeft where T: ?core::marker::Sized
pub fn vyre_primitives::ShiftLeft::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::ShiftLeft where T: core::clone::Clone
pub unsafe fn vyre_primitives::ShiftLeft::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::ShiftLeft
pub fn vyre_primitives::ShiftLeft::from(t: T) -> T
pub struct vyre_primitives::ShiftRight
impl core::clone::Clone for vyre_primitives::ShiftRight
pub fn vyre_primitives::ShiftRight::clone(&self) -> vyre_primitives::ShiftRight
impl core::cmp::Eq for vyre_primitives::ShiftRight
impl core::cmp::PartialEq for vyre_primitives::ShiftRight
pub fn vyre_primitives::ShiftRight::eq(&self, other: &vyre_primitives::ShiftRight) -> bool
impl core::default::Default for vyre_primitives::ShiftRight
pub fn vyre_primitives::ShiftRight::default() -> vyre_primitives::ShiftRight
impl core::fmt::Debug for vyre_primitives::ShiftRight
pub fn vyre_primitives::ShiftRight::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::ShiftRight
pub fn vyre_primitives::ShiftRight::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::ShiftRight
impl core::marker::StructuralPartialEq for vyre_primitives::ShiftRight
impl core::marker::Freeze for vyre_primitives::ShiftRight
impl core::marker::Send for vyre_primitives::ShiftRight
impl core::marker::Sync for vyre_primitives::ShiftRight
impl core::marker::Unpin for vyre_primitives::ShiftRight
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::ShiftRight
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::ShiftRight
impl<T, U> core::convert::Into<U> for vyre_primitives::ShiftRight where U: core::convert::From<T>
pub fn vyre_primitives::ShiftRight::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::ShiftRight where U: core::convert::Into<T>
pub type vyre_primitives::ShiftRight::Error = core::convert::Infallible
pub fn vyre_primitives::ShiftRight::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::ShiftRight where U: core::convert::TryFrom<T>
pub type vyre_primitives::ShiftRight::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::ShiftRight::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::ShiftRight where T: core::clone::Clone
pub type vyre_primitives::ShiftRight::Owned = T
pub fn vyre_primitives::ShiftRight::clone_into(&self, target: &mut T)
pub fn vyre_primitives::ShiftRight::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::ShiftRight where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::ShiftRight::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::ShiftRight where T: ?core::marker::Sized
pub fn vyre_primitives::ShiftRight::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::ShiftRight where T: ?core::marker::Sized
pub fn vyre_primitives::ShiftRight::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::ShiftRight where T: core::clone::Clone
pub unsafe fn vyre_primitives::ShiftRight::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::ShiftRight
pub fn vyre_primitives::ShiftRight::from(t: T) -> T
pub struct vyre_primitives::Shuffle
impl core::clone::Clone for vyre_primitives::Shuffle
pub fn vyre_primitives::Shuffle::clone(&self) -> vyre_primitives::Shuffle
impl core::cmp::Eq for vyre_primitives::Shuffle
impl core::cmp::PartialEq for vyre_primitives::Shuffle
pub fn vyre_primitives::Shuffle::eq(&self, other: &vyre_primitives::Shuffle) -> bool
impl core::default::Default for vyre_primitives::Shuffle
pub fn vyre_primitives::Shuffle::default() -> vyre_primitives::Shuffle
impl core::fmt::Debug for vyre_primitives::Shuffle
pub fn vyre_primitives::Shuffle::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for vyre_primitives::Shuffle
pub fn vyre_primitives::Shuffle::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for vyre_primitives::Shuffle
impl core::marker::StructuralPartialEq for vyre_primitives::Shuffle
impl core::marker::Freeze for vyre_primitives::Shuffle
impl core::marker::Send for vyre_primitives::Shuffle
impl core::marker::Sync for vyre_primitives::Shuffle
impl core::marker::Unpin for vyre_primitives::Shuffle
impl core::panic::unwind_safe::RefUnwindSafe for vyre_primitives::Shuffle
impl core::panic::unwind_safe::UnwindSafe for vyre_primitives::Shuffle
impl<T, U> core::convert::Into<U> for vyre_primitives::Shuffle where U: core::convert::From<T>
pub fn vyre_primitives::Shuffle::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for vyre_primitives::Shuffle where U: core::convert::Into<T>
pub type vyre_primitives::Shuffle::Error = core::convert::Infallible
pub fn vyre_primitives::Shuffle::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for vyre_primitives::Shuffle where U: core::convert::TryFrom<T>
pub type vyre_primitives::Shuffle::Error = <U as core::convert::TryFrom<T>>::Error
pub fn vyre_primitives::Shuffle::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for vyre_primitives::Shuffle where T: core::clone::Clone
pub type vyre_primitives::Shuffle::Owned = T
pub fn vyre_primitives::Shuffle::clone_into(&self, target: &mut T)
pub fn vyre_primitives::Shuffle::to_owned(&self) -> T
impl<T> core::any::Any for vyre_primitives::Shuffle where T: 'static + ?core::marker::Sized
pub fn vyre_primitives::Shuffle::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for vyre_primitives::Shuffle where T: ?core::marker::Sized
pub fn vyre_primitives::Shuffle::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for vyre_primitives::Shuffle where T: ?core::marker::Sized
pub fn vyre_primitives::Shuffle::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for vyre_primitives::Shuffle where T: core::clone::Clone
pub unsafe fn vyre_primitives::Shuffle::clone_to_uninit(&self, dest: *mut u8)
impl<T> core::convert::From<T> for vyre_primitives::Shuffle
pub fn vyre_primitives::Shuffle::from(t: T) -> T