-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapi.golden
924 lines (924 loc) · 82.8 KB
/
api.golden
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
pub mod clipboard_history_core
pub mod clipboard_history_core::dirs
pub fn clipboard_history_core::dirs::config_file_dir() -> std::path::PathBuf
pub fn clipboard_history_core::dirs::data_dir() -> std::path::PathBuf
pub fn clipboard_history_core::dirs::paste_socket_file() -> std::path::PathBuf
pub fn clipboard_history_core::dirs::push_sockets_prefix(file: &mut std::path::PathBuf)
pub fn clipboard_history_core::dirs::socket_file() -> std::path::PathBuf
pub mod clipboard_history_core::protocol
#[repr(C)] pub enum clipboard_history_core::protocol::AddResponse
pub clipboard_history_core::protocol::AddResponse::Success
pub clipboard_history_core::protocol::AddResponse::Success::id: u64
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::AddResponse
impl core::clone::Clone for clipboard_history_core::protocol::AddResponse
pub fn clipboard_history_core::protocol::AddResponse::clone(&self) -> clipboard_history_core::protocol::AddResponse
impl core::fmt::Debug for clipboard_history_core::protocol::AddResponse
pub fn clipboard_history_core::protocol::AddResponse::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_core::protocol::AddResponse
impl core::marker::Freeze for clipboard_history_core::protocol::AddResponse
impl core::marker::Send for clipboard_history_core::protocol::AddResponse
impl core::marker::Sync for clipboard_history_core::protocol::AddResponse
impl core::marker::Unpin for clipboard_history_core::protocol::AddResponse
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::AddResponse
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::AddResponse
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::AddResponse where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::AddResponse::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::AddResponse where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::AddResponse::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::AddResponse::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::AddResponse where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::AddResponse::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::AddResponse::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::AddResponse where T: core::clone::Clone
pub type clipboard_history_core::protocol::AddResponse::Owned = T
pub fn clipboard_history_core::protocol::AddResponse::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::AddResponse::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::protocol::AddResponse where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::AddResponse::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::AddResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::AddResponse::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::AddResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::AddResponse::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::AddResponse where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::AddResponse::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::AddResponse
pub fn clipboard_history_core::protocol::AddResponse::from(t: T) -> T
#[repr(C)] pub enum clipboard_history_core::protocol::IdNotFoundError
pub clipboard_history_core::protocol::IdNotFoundError::Entry(u32)
pub clipboard_history_core::protocol::IdNotFoundError::Ring(u32)
impl core::clone::Clone for clipboard_history_core::protocol::IdNotFoundError
pub fn clipboard_history_core::protocol::IdNotFoundError::clone(&self) -> clipboard_history_core::protocol::IdNotFoundError
impl core::convert::From<clipboard_history_core::protocol::IdNotFoundError> for clipboard_history_core::Error
pub fn clipboard_history_core::Error::from(source: clipboard_history_core::protocol::IdNotFoundError) -> Self
impl core::error::Error for clipboard_history_core::protocol::IdNotFoundError
impl core::fmt::Debug for clipboard_history_core::protocol::IdNotFoundError
pub fn clipboard_history_core::protocol::IdNotFoundError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for clipboard_history_core::protocol::IdNotFoundError
pub fn clipboard_history_core::protocol::IdNotFoundError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_core::protocol::IdNotFoundError
impl core::marker::Freeze for clipboard_history_core::protocol::IdNotFoundError
impl core::marker::Send for clipboard_history_core::protocol::IdNotFoundError
impl core::marker::Sync for clipboard_history_core::protocol::IdNotFoundError
impl core::marker::Unpin for clipboard_history_core::protocol::IdNotFoundError
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::IdNotFoundError
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::IdNotFoundError
impl<C> error_stack::context::Context for clipboard_history_core::protocol::IdNotFoundError where C: core::error::Error + core::marker::Send + core::marker::Sync + 'static
pub fn clipboard_history_core::protocol::IdNotFoundError::provide<'a>(&'a self, request: &mut core::error::Request<'a>)
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::IdNotFoundError where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::IdNotFoundError::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::IdNotFoundError where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::IdNotFoundError::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::IdNotFoundError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::IdNotFoundError where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::IdNotFoundError::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::IdNotFoundError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::IdNotFoundError where T: core::clone::Clone
pub type clipboard_history_core::protocol::IdNotFoundError::Owned = T
pub fn clipboard_history_core::protocol::IdNotFoundError::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::IdNotFoundError::to_owned(&self) -> T
impl<T> alloc::string::ToString for clipboard_history_core::protocol::IdNotFoundError where T: core::fmt::Display + ?core::marker::Sized
pub fn clipboard_history_core::protocol::IdNotFoundError::to_string(&self) -> alloc::string::String
impl<T> core::any::Any for clipboard_history_core::protocol::IdNotFoundError where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::IdNotFoundError::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::IdNotFoundError where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::IdNotFoundError::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::IdNotFoundError where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::IdNotFoundError::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::IdNotFoundError where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::IdNotFoundError::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::IdNotFoundError
pub fn clipboard_history_core::protocol::IdNotFoundError::from(t: T) -> T
#[repr(C)] pub enum clipboard_history_core::protocol::MoveToFrontResponse
pub clipboard_history_core::protocol::MoveToFrontResponse::Error(clipboard_history_core::protocol::IdNotFoundError)
pub clipboard_history_core::protocol::MoveToFrontResponse::Success
pub clipboard_history_core::protocol::MoveToFrontResponse::Success::id: u64
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::MoveToFrontResponse
impl core::clone::Clone for clipboard_history_core::protocol::MoveToFrontResponse
pub fn clipboard_history_core::protocol::MoveToFrontResponse::clone(&self) -> clipboard_history_core::protocol::MoveToFrontResponse
impl core::fmt::Debug for clipboard_history_core::protocol::MoveToFrontResponse
pub fn clipboard_history_core::protocol::MoveToFrontResponse::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_core::protocol::MoveToFrontResponse
impl core::marker::Freeze for clipboard_history_core::protocol::MoveToFrontResponse
impl core::marker::Send for clipboard_history_core::protocol::MoveToFrontResponse
impl core::marker::Sync for clipboard_history_core::protocol::MoveToFrontResponse
impl core::marker::Unpin for clipboard_history_core::protocol::MoveToFrontResponse
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::MoveToFrontResponse
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::MoveToFrontResponse
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::MoveToFrontResponse where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::MoveToFrontResponse::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::MoveToFrontResponse where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::MoveToFrontResponse::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::MoveToFrontResponse::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::MoveToFrontResponse where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::MoveToFrontResponse::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::MoveToFrontResponse::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::MoveToFrontResponse where T: core::clone::Clone
pub type clipboard_history_core::protocol::MoveToFrontResponse::Owned = T
pub fn clipboard_history_core::protocol::MoveToFrontResponse::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::MoveToFrontResponse::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::protocol::MoveToFrontResponse where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::MoveToFrontResponse::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::MoveToFrontResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::MoveToFrontResponse::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::MoveToFrontResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::MoveToFrontResponse::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::MoveToFrontResponse where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::MoveToFrontResponse::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::MoveToFrontResponse
pub fn clipboard_history_core::protocol::MoveToFrontResponse::from(t: T) -> T
#[repr(C)] pub enum clipboard_history_core::protocol::Request
pub clipboard_history_core::protocol::Request::Add
pub clipboard_history_core::protocol::Request::Add::mime_type: clipboard_history_core::protocol::MimeType
pub clipboard_history_core::protocol::Request::Add::to: clipboard_history_core::protocol::RingKind
pub clipboard_history_core::protocol::Request::GarbageCollect
pub clipboard_history_core::protocol::Request::GarbageCollect::max_wasted_bytes: u64
pub clipboard_history_core::protocol::Request::MoveToFront
pub clipboard_history_core::protocol::Request::MoveToFront::id: u64
pub clipboard_history_core::protocol::Request::MoveToFront::to: core::option::Option<clipboard_history_core::protocol::RingKind>
pub clipboard_history_core::protocol::Request::Remove
pub clipboard_history_core::protocol::Request::Remove::id: u64
pub clipboard_history_core::protocol::Request::Swap
pub clipboard_history_core::protocol::Request::Swap::id1: u64
pub clipboard_history_core::protocol::Request::Swap::id2: u64
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::Request
impl core::clone::Clone for clipboard_history_core::protocol::Request
pub fn clipboard_history_core::protocol::Request::clone(&self) -> clipboard_history_core::protocol::Request
impl core::fmt::Debug for clipboard_history_core::protocol::Request
pub fn clipboard_history_core::protocol::Request::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_core::protocol::Request
impl core::marker::Freeze for clipboard_history_core::protocol::Request
impl core::marker::Send for clipboard_history_core::protocol::Request
impl core::marker::Sync for clipboard_history_core::protocol::Request
impl core::marker::Unpin for clipboard_history_core::protocol::Request
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::Request
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::Request
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::Request where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::Request::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::Request where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::Request::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::Request::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::Request where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::Request::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::Request::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::Request where T: core::clone::Clone
pub type clipboard_history_core::protocol::Request::Owned = T
pub fn clipboard_history_core::protocol::Request::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::Request::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::protocol::Request where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::Request::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::Request where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::Request::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::Request where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::Request::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::Request where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::Request::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::Request
pub fn clipboard_history_core::protocol::Request::from(t: T) -> T
#[repr(u8)] pub enum clipboard_history_core::protocol::RingKind
pub clipboard_history_core::protocol::RingKind::Favorites
pub clipboard_history_core::protocol::RingKind::Main
impl clipboard_history_core::protocol::RingKind
pub const fn clipboard_history_core::protocol::RingKind::default_max_entries(&self) -> u32
pub const fn clipboard_history_core::protocol::RingKind::file_name(&self) -> &'static str
pub const fn clipboard_history_core::protocol::RingKind::file_name_cstr(&self) -> &'static core::ffi::c_str::CStr
impl core::clone::Clone for clipboard_history_core::protocol::RingKind
pub fn clipboard_history_core::protocol::RingKind::clone(&self) -> clipboard_history_core::protocol::RingKind
impl core::cmp::Eq for clipboard_history_core::protocol::RingKind
impl core::cmp::PartialEq for clipboard_history_core::protocol::RingKind
pub fn clipboard_history_core::protocol::RingKind::eq(&self, other: &clipboard_history_core::protocol::RingKind) -> bool
impl core::default::Default for clipboard_history_core::protocol::RingKind
pub fn clipboard_history_core::protocol::RingKind::default() -> clipboard_history_core::protocol::RingKind
impl core::fmt::Debug for clipboard_history_core::protocol::RingKind
pub fn clipboard_history_core::protocol::RingKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for clipboard_history_core::protocol::RingKind
pub fn clipboard_history_core::protocol::RingKind::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for clipboard_history_core::protocol::RingKind
impl core::marker::StructuralPartialEq for clipboard_history_core::protocol::RingKind
impl core::marker::Freeze for clipboard_history_core::protocol::RingKind
impl core::marker::Send for clipboard_history_core::protocol::RingKind
impl core::marker::Sync for clipboard_history_core::protocol::RingKind
impl core::marker::Unpin for clipboard_history_core::protocol::RingKind
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::RingKind
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::RingKind
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::RingKind where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::RingKind::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::RingKind where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::RingKind::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::RingKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::RingKind where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::RingKind::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::RingKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::RingKind where T: core::clone::Clone
pub type clipboard_history_core::protocol::RingKind::Owned = T
pub fn clipboard_history_core::protocol::RingKind::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::RingKind::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::protocol::RingKind where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::RingKind::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::RingKind where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::RingKind::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::RingKind where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::RingKind::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::RingKind where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::RingKind::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::RingKind
pub fn clipboard_history_core::protocol::RingKind::from(t: T) -> T
#[repr(C)] pub struct clipboard_history_core::protocol::GarbageCollectResponse
pub clipboard_history_core::protocol::GarbageCollectResponse::bytes_freed: u64
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::GarbageCollectResponse
impl core::clone::Clone for clipboard_history_core::protocol::GarbageCollectResponse
pub fn clipboard_history_core::protocol::GarbageCollectResponse::clone(&self) -> clipboard_history_core::protocol::GarbageCollectResponse
impl core::fmt::Debug for clipboard_history_core::protocol::GarbageCollectResponse
pub fn clipboard_history_core::protocol::GarbageCollectResponse::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_core::protocol::GarbageCollectResponse
impl core::marker::Freeze for clipboard_history_core::protocol::GarbageCollectResponse
impl core::marker::Send for clipboard_history_core::protocol::GarbageCollectResponse
impl core::marker::Sync for clipboard_history_core::protocol::GarbageCollectResponse
impl core::marker::Unpin for clipboard_history_core::protocol::GarbageCollectResponse
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::GarbageCollectResponse
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::GarbageCollectResponse
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::GarbageCollectResponse where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::GarbageCollectResponse::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::GarbageCollectResponse where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::GarbageCollectResponse::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::GarbageCollectResponse::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::GarbageCollectResponse where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::GarbageCollectResponse::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::GarbageCollectResponse::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::GarbageCollectResponse where T: core::clone::Clone
pub type clipboard_history_core::protocol::GarbageCollectResponse::Owned = T
pub fn clipboard_history_core::protocol::GarbageCollectResponse::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::GarbageCollectResponse::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::protocol::GarbageCollectResponse where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::GarbageCollectResponse::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::GarbageCollectResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::GarbageCollectResponse::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::GarbageCollectResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::GarbageCollectResponse::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::GarbageCollectResponse where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::GarbageCollectResponse::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::GarbageCollectResponse
pub fn clipboard_history_core::protocol::GarbageCollectResponse::from(t: T) -> T
#[repr(C)] pub struct clipboard_history_core::protocol::RemoveResponse
pub clipboard_history_core::protocol::RemoveResponse::error: core::option::Option<clipboard_history_core::protocol::IdNotFoundError>
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::RemoveResponse
impl core::clone::Clone for clipboard_history_core::protocol::RemoveResponse
pub fn clipboard_history_core::protocol::RemoveResponse::clone(&self) -> clipboard_history_core::protocol::RemoveResponse
impl core::fmt::Debug for clipboard_history_core::protocol::RemoveResponse
pub fn clipboard_history_core::protocol::RemoveResponse::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_core::protocol::RemoveResponse
impl core::marker::Freeze for clipboard_history_core::protocol::RemoveResponse
impl core::marker::Send for clipboard_history_core::protocol::RemoveResponse
impl core::marker::Sync for clipboard_history_core::protocol::RemoveResponse
impl core::marker::Unpin for clipboard_history_core::protocol::RemoveResponse
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::RemoveResponse
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::RemoveResponse
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::RemoveResponse where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::RemoveResponse::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::RemoveResponse where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::RemoveResponse::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::RemoveResponse::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::RemoveResponse where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::RemoveResponse::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::RemoveResponse::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::RemoveResponse where T: core::clone::Clone
pub type clipboard_history_core::protocol::RemoveResponse::Owned = T
pub fn clipboard_history_core::protocol::RemoveResponse::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::RemoveResponse::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::protocol::RemoveResponse where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::RemoveResponse::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::RemoveResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::RemoveResponse::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::RemoveResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::RemoveResponse::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::RemoveResponse where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::RemoveResponse::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::RemoveResponse
pub fn clipboard_history_core::protocol::RemoveResponse::from(t: T) -> T
#[repr(C)] pub struct clipboard_history_core::protocol::Response<T>
pub clipboard_history_core::protocol::Response::sequence_number: u64
pub clipboard_history_core::protocol::Response::value: T
impl<T: core::clone::Clone> core::clone::Clone for clipboard_history_core::protocol::Response<T>
pub fn clipboard_history_core::protocol::Response<T>::clone(&self) -> clipboard_history_core::protocol::Response<T>
impl<T: core::marker::Copy> core::marker::Copy for clipboard_history_core::protocol::Response<T>
impl<T> core::marker::Freeze for clipboard_history_core::protocol::Response<T> where T: core::marker::Freeze
impl<T> core::marker::Send for clipboard_history_core::protocol::Response<T> where T: core::marker::Send
impl<T> core::marker::Sync for clipboard_history_core::protocol::Response<T> where T: core::marker::Sync
impl<T> core::marker::Unpin for clipboard_history_core::protocol::Response<T> where T: core::marker::Unpin
impl<T> core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::Response<T> where T: core::panic::unwind_safe::RefUnwindSafe
impl<T> core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::Response<T> where T: core::panic::unwind_safe::UnwindSafe
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::Response<T> where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::Response<T>::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::Response<T> where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::Response<T>::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::Response<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::Response<T> where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::Response<T>::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::Response<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::Response<T> where T: core::clone::Clone
pub type clipboard_history_core::protocol::Response<T>::Owned = T
pub fn clipboard_history_core::protocol::Response<T>::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::Response<T>::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::protocol::Response<T> where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::Response<T>::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::Response<T> where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::Response<T>::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::Response<T> where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::Response<T>::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::Response<T> where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::Response<T>::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::Response<T>
pub fn clipboard_history_core::protocol::Response<T>::from(t: T) -> T
#[repr(C)] pub struct clipboard_history_core::protocol::SwapResponse
pub clipboard_history_core::protocol::SwapResponse::error1: core::option::Option<clipboard_history_core::protocol::IdNotFoundError>
pub clipboard_history_core::protocol::SwapResponse::error2: core::option::Option<clipboard_history_core::protocol::IdNotFoundError>
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::SwapResponse
impl core::clone::Clone for clipboard_history_core::protocol::SwapResponse
pub fn clipboard_history_core::protocol::SwapResponse::clone(&self) -> clipboard_history_core::protocol::SwapResponse
impl core::fmt::Debug for clipboard_history_core::protocol::SwapResponse
pub fn clipboard_history_core::protocol::SwapResponse::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_core::protocol::SwapResponse
impl core::marker::Freeze for clipboard_history_core::protocol::SwapResponse
impl core::marker::Send for clipboard_history_core::protocol::SwapResponse
impl core::marker::Sync for clipboard_history_core::protocol::SwapResponse
impl core::marker::Unpin for clipboard_history_core::protocol::SwapResponse
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::protocol::SwapResponse
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::protocol::SwapResponse
impl<T, U> core::convert::Into<U> for clipboard_history_core::protocol::SwapResponse where U: core::convert::From<T>
pub fn clipboard_history_core::protocol::SwapResponse::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::protocol::SwapResponse where U: core::convert::Into<T>
pub type clipboard_history_core::protocol::SwapResponse::Error = core::convert::Infallible
pub fn clipboard_history_core::protocol::SwapResponse::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::protocol::SwapResponse where U: core::convert::TryFrom<T>
pub type clipboard_history_core::protocol::SwapResponse::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::protocol::SwapResponse::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::protocol::SwapResponse where T: core::clone::Clone
pub type clipboard_history_core::protocol::SwapResponse::Owned = T
pub fn clipboard_history_core::protocol::SwapResponse::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::protocol::SwapResponse::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::protocol::SwapResponse where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::protocol::SwapResponse::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::protocol::SwapResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::SwapResponse::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::protocol::SwapResponse where T: ?core::marker::Sized
pub fn clipboard_history_core::protocol::SwapResponse::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::protocol::SwapResponse where T: core::clone::Clone
pub unsafe fn clipboard_history_core::protocol::SwapResponse::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::protocol::SwapResponse
pub fn clipboard_history_core::protocol::SwapResponse::from(t: T) -> T
pub const clipboard_history_core::protocol::VERSION: u8
pub fn clipboard_history_core::protocol::composite_id(kind: clipboard_history_core::protocol::RingKind, index: u32) -> u64
pub fn clipboard_history_core::protocol::decompose_id(id: u64) -> core::result::Result<(clipboard_history_core::protocol::RingKind, u32), clipboard_history_core::protocol::IdNotFoundError>
pub type clipboard_history_core::protocol::MimeType = arrayvec::array_string::ArrayString<96>
pub mod clipboard_history_core::ring
pub enum clipboard_history_core::ring::Entry
pub clipboard_history_core::ring::Entry::Bucketed(clipboard_history_core::ring::InitializedEntry)
pub clipboard_history_core::ring::Entry::File
pub clipboard_history_core::ring::Entry::Uninitialized
impl core::clone::Clone for clipboard_history_core::ring::Entry
pub fn clipboard_history_core::ring::Entry::clone(&self) -> clipboard_history_core::ring::Entry
impl core::cmp::Eq for clipboard_history_core::ring::Entry
impl core::cmp::PartialEq for clipboard_history_core::ring::Entry
pub fn clipboard_history_core::ring::Entry::eq(&self, other: &clipboard_history_core::ring::Entry) -> bool
impl core::convert::From<clipboard_history_core::ring::Entry> for clipboard_history_core::ring::RawEntry
pub fn clipboard_history_core::ring::RawEntry::from(value: clipboard_history_core::ring::Entry) -> Self
impl core::convert::From<clipboard_history_core::ring::RawEntry> for clipboard_history_core::ring::Entry
pub fn clipboard_history_core::ring::Entry::from(RawEntry: clipboard_history_core::ring::RawEntry) -> Self
impl core::fmt::Debug for clipboard_history_core::ring::Entry
pub fn clipboard_history_core::ring::Entry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for clipboard_history_core::ring::Entry
pub fn clipboard_history_core::ring::Entry::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for clipboard_history_core::ring::Entry
impl core::marker::StructuralPartialEq for clipboard_history_core::ring::Entry
impl core::marker::Freeze for clipboard_history_core::ring::Entry
impl core::marker::Send for clipboard_history_core::ring::Entry
impl core::marker::Sync for clipboard_history_core::ring::Entry
impl core::marker::Unpin for clipboard_history_core::ring::Entry
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::ring::Entry
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::ring::Entry
impl<T, U> core::convert::Into<U> for clipboard_history_core::ring::Entry where U: core::convert::From<T>
pub fn clipboard_history_core::ring::Entry::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::ring::Entry where U: core::convert::Into<T>
pub type clipboard_history_core::ring::Entry::Error = core::convert::Infallible
pub fn clipboard_history_core::ring::Entry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::ring::Entry where U: core::convert::TryFrom<T>
pub type clipboard_history_core::ring::Entry::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::ring::Entry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::ring::Entry where T: core::clone::Clone
pub type clipboard_history_core::ring::Entry::Owned = T
pub fn clipboard_history_core::ring::Entry::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::ring::Entry::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::ring::Entry where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::ring::Entry::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::ring::Entry where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::Entry::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::ring::Entry where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::Entry::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::ring::Entry where T: core::clone::Clone
pub unsafe fn clipboard_history_core::ring::Entry::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::ring::Entry
pub fn clipboard_history_core::ring::Entry::from(t: T) -> T
#[repr(C)] pub struct clipboard_history_core::ring::Header
pub clipboard_history_core::ring::Header::magic: [u8; 3]
pub clipboard_history_core::ring::Header::version: u8
pub clipboard_history_core::ring::Header::write_head: u32
impl core::default::Default for clipboard_history_core::ring::Header
pub fn clipboard_history_core::ring::Header::default() -> Self
impl core::marker::Freeze for clipboard_history_core::ring::Header
impl core::marker::Send for clipboard_history_core::ring::Header
impl core::marker::Sync for clipboard_history_core::ring::Header
impl core::marker::Unpin for clipboard_history_core::ring::Header
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::ring::Header
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::ring::Header
impl<T, U> core::convert::Into<U> for clipboard_history_core::ring::Header where U: core::convert::From<T>
pub fn clipboard_history_core::ring::Header::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::ring::Header where U: core::convert::Into<T>
pub type clipboard_history_core::ring::Header::Error = core::convert::Infallible
pub fn clipboard_history_core::ring::Header::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::ring::Header where U: core::convert::TryFrom<T>
pub type clipboard_history_core::ring::Header::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::ring::Header::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::ring::Header where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::ring::Header::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::ring::Header where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::Header::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::ring::Header where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::Header::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::ring::Header
pub fn clipboard_history_core::ring::Header::from(t: T) -> T
pub struct clipboard_history_core::ring::InitializedEntry(_)
impl clipboard_history_core::ring::InitializedEntry
pub fn clipboard_history_core::ring::InitializedEntry::bucket(size: u16, index: u32) -> Self
pub const fn clipboard_history_core::ring::InitializedEntry::file() -> Self
pub const fn clipboard_history_core::ring::InitializedEntry::index(&self) -> u32
pub fn clipboard_history_core::ring::InitializedEntry::is_file(&self) -> bool
pub fn clipboard_history_core::ring::InitializedEntry::size(&self) -> u16
impl core::clone::Clone for clipboard_history_core::ring::InitializedEntry
pub fn clipboard_history_core::ring::InitializedEntry::clone(&self) -> clipboard_history_core::ring::InitializedEntry
impl core::cmp::Eq for clipboard_history_core::ring::InitializedEntry
impl core::cmp::PartialEq for clipboard_history_core::ring::InitializedEntry
pub fn clipboard_history_core::ring::InitializedEntry::eq(&self, other: &clipboard_history_core::ring::InitializedEntry) -> bool
impl core::fmt::Debug for clipboard_history_core::ring::InitializedEntry
pub fn clipboard_history_core::ring::InitializedEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for clipboard_history_core::ring::InitializedEntry
pub fn clipboard_history_core::ring::InitializedEntry::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for clipboard_history_core::ring::InitializedEntry
impl core::marker::StructuralPartialEq for clipboard_history_core::ring::InitializedEntry
impl core::marker::Freeze for clipboard_history_core::ring::InitializedEntry
impl core::marker::Send for clipboard_history_core::ring::InitializedEntry
impl core::marker::Sync for clipboard_history_core::ring::InitializedEntry
impl core::marker::Unpin for clipboard_history_core::ring::InitializedEntry
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::ring::InitializedEntry
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::ring::InitializedEntry
impl<T, U> core::convert::Into<U> for clipboard_history_core::ring::InitializedEntry where U: core::convert::From<T>
pub fn clipboard_history_core::ring::InitializedEntry::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::ring::InitializedEntry where U: core::convert::Into<T>
pub type clipboard_history_core::ring::InitializedEntry::Error = core::convert::Infallible
pub fn clipboard_history_core::ring::InitializedEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::ring::InitializedEntry where U: core::convert::TryFrom<T>
pub type clipboard_history_core::ring::InitializedEntry::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::ring::InitializedEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::ring::InitializedEntry where T: core::clone::Clone
pub type clipboard_history_core::ring::InitializedEntry::Owned = T
pub fn clipboard_history_core::ring::InitializedEntry::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::ring::InitializedEntry::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::ring::InitializedEntry where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::ring::InitializedEntry::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::ring::InitializedEntry where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::InitializedEntry::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::ring::InitializedEntry where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::InitializedEntry::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::ring::InitializedEntry where T: core::clone::Clone
pub unsafe fn clipboard_history_core::ring::InitializedEntry::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::ring::InitializedEntry
pub fn clipboard_history_core::ring::InitializedEntry::from(t: T) -> T
pub struct clipboard_history_core::ring::Mmap
impl clipboard_history_core::ring::Mmap
pub fn clipboard_history_core::ring::Mmap::from<Fd: std::os::fd::owned::AsFd>(fd: Fd) -> rustix::io::errno::Result<Self>
pub const fn clipboard_history_core::ring::Mmap::is_empty(&self) -> bool
pub const fn clipboard_history_core::ring::Mmap::len(&self) -> usize
pub fn clipboard_history_core::ring::Mmap::new<Fd: std::os::fd::owned::AsFd>(fd: Fd, len: usize) -> rustix::io::errno::Result<Self>
pub const fn clipboard_history_core::ring::Mmap::ptr(&self) -> core::ptr::non_null::NonNull<u8>
pub fn clipboard_history_core::ring::Mmap::remap(&mut self, len: usize) -> rustix::io::errno::Result<()>
impl core::convert::AsRef<[u8]> for clipboard_history_core::ring::Mmap
pub fn clipboard_history_core::ring::Mmap::as_ref(&self) -> &[u8]
impl core::fmt::Debug for clipboard_history_core::ring::Mmap
pub fn clipboard_history_core::ring::Mmap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Send for clipboard_history_core::ring::Mmap
impl core::marker::Sync for clipboard_history_core::ring::Mmap
impl core::ops::deref::Deref for clipboard_history_core::ring::Mmap
pub type clipboard_history_core::ring::Mmap::Target = [u8]
pub fn clipboard_history_core::ring::Mmap::deref(&self) -> &[u8]
impl core::ops::drop::Drop for clipboard_history_core::ring::Mmap
pub fn clipboard_history_core::ring::Mmap::drop(&mut self)
impl core::marker::Freeze for clipboard_history_core::ring::Mmap
impl core::marker::Unpin for clipboard_history_core::ring::Mmap
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::ring::Mmap
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::ring::Mmap
impl<P, T> core::ops::deref::Receiver for clipboard_history_core::ring::Mmap where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
pub type clipboard_history_core::ring::Mmap::Target = T
impl<T, U> core::convert::Into<U> for clipboard_history_core::ring::Mmap where U: core::convert::From<T>
pub fn clipboard_history_core::ring::Mmap::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::ring::Mmap where U: core::convert::Into<T>
pub type clipboard_history_core::ring::Mmap::Error = core::convert::Infallible
pub fn clipboard_history_core::ring::Mmap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::ring::Mmap where U: core::convert::TryFrom<T>
pub type clipboard_history_core::ring::Mmap::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::ring::Mmap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::ring::Mmap where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::ring::Mmap::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::ring::Mmap where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::Mmap::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::ring::Mmap where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::Mmap::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::ring::Mmap
pub fn clipboard_history_core::ring::Mmap::from(t: T) -> T
#[repr(transparent)] pub struct clipboard_history_core::ring::RawEntry(_)
impl core::convert::From<clipboard_history_core::ring::Entry> for clipboard_history_core::ring::RawEntry
pub fn clipboard_history_core::ring::RawEntry::from(value: clipboard_history_core::ring::Entry) -> Self
impl core::convert::From<clipboard_history_core::ring::RawEntry> for clipboard_history_core::ring::Entry
pub fn clipboard_history_core::ring::Entry::from(RawEntry: clipboard_history_core::ring::RawEntry) -> Self
impl core::ops::deref::Deref for clipboard_history_core::ring::RawEntry
pub type clipboard_history_core::ring::RawEntry::Target = u32
pub fn clipboard_history_core::ring::RawEntry::deref(&self) -> &Self::Target
impl core::marker::Freeze for clipboard_history_core::ring::RawEntry
impl core::marker::Send for clipboard_history_core::ring::RawEntry
impl core::marker::Sync for clipboard_history_core::ring::RawEntry
impl core::marker::Unpin for clipboard_history_core::ring::RawEntry
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::ring::RawEntry
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::ring::RawEntry
impl<P, T> core::ops::deref::Receiver for clipboard_history_core::ring::RawEntry where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
pub type clipboard_history_core::ring::RawEntry::Target = T
impl<T, U> core::convert::Into<U> for clipboard_history_core::ring::RawEntry where U: core::convert::From<T>
pub fn clipboard_history_core::ring::RawEntry::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::ring::RawEntry where U: core::convert::Into<T>
pub type clipboard_history_core::ring::RawEntry::Error = core::convert::Infallible
pub fn clipboard_history_core::ring::RawEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::ring::RawEntry where U: core::convert::TryFrom<T>
pub type clipboard_history_core::ring::RawEntry::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::ring::RawEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::ring::RawEntry where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::ring::RawEntry::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::ring::RawEntry where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::RawEntry::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::ring::RawEntry where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::RawEntry::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::ring::RawEntry
pub fn clipboard_history_core::ring::RawEntry::from(t: T) -> T
pub struct clipboard_history_core::ring::Ring
impl clipboard_history_core::ring::Ring
pub const fn clipboard_history_core::ring::Ring::capacity(&self) -> u32
pub fn clipboard_history_core::ring::Ring::get(&self, index: u32) -> core::option::Option<clipboard_history_core::ring::Entry>
pub const fn clipboard_history_core::ring::Ring::is_empty(&self) -> bool
pub const fn clipboard_history_core::ring::Ring::len(&self) -> u32
pub const fn clipboard_history_core::ring::Ring::next_entry(&self, current: u32) -> u32
pub const fn clipboard_history_core::ring::Ring::next_head(&self, current: u32) -> u32
pub fn clipboard_history_core::ring::Ring::open<P: rustix::path::arg::Arg + core::marker::Copy + core::fmt::Debug>(max_entries: u32, path: P) -> clipboard_history_core::Result<Self>
pub fn clipboard_history_core::ring::Ring::open_fd<Fd: std::os::fd::owned::AsFd>(max_entries: u32, fd: Fd) -> clipboard_history_core::Result<Self>
pub const fn clipboard_history_core::ring::Ring::prev_entry(&self, current: u32) -> u32
pub unsafe fn clipboard_history_core::ring::Ring::set_len(&mut self, len: u32)
pub fn clipboard_history_core::ring::Ring::write_head(&self) -> u32
impl core::fmt::Debug for clipboard_history_core::ring::Ring
pub fn clipboard_history_core::ring::Ring::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_core::ring::Ring
impl core::marker::Send for clipboard_history_core::ring::Ring
impl core::marker::Sync for clipboard_history_core::ring::Ring
impl core::marker::Unpin for clipboard_history_core::ring::Ring
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::ring::Ring
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::ring::Ring
impl<T, U> core::convert::Into<U> for clipboard_history_core::ring::Ring where U: core::convert::From<T>
pub fn clipboard_history_core::ring::Ring::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::ring::Ring where U: core::convert::Into<T>
pub type clipboard_history_core::ring::Ring::Error = core::convert::Infallible
pub fn clipboard_history_core::ring::Ring::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::ring::Ring where U: core::convert::TryFrom<T>
pub type clipboard_history_core::ring::Ring::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::ring::Ring::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::ring::Ring where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::ring::Ring::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::ring::Ring where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::Ring::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::ring::Ring where T: ?core::marker::Sized
pub fn clipboard_history_core::ring::Ring::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::ring::Ring
pub fn clipboard_history_core::ring::Ring::from(t: T) -> T
pub const clipboard_history_core::ring::MAGIC: [u8; 3]
pub const clipboard_history_core::ring::MAX_ENTRIES: u32
pub const clipboard_history_core::ring::VERSION: u8
pub fn clipboard_history_core::ring::entries_to_offset(entries: u32) -> u64
pub fn clipboard_history_core::ring::offset_to_entries(offset: usize) -> u32
pub enum clipboard_history_core::Error
pub clipboard_history_core::Error::IdNotFound(clipboard_history_core::protocol::IdNotFoundError)
pub clipboard_history_core::Error::InvalidPidError
pub clipboard_history_core::Error::InvalidPidError::context: alloc::borrow::Cow<'static, str>
pub clipboard_history_core::Error::InvalidPidError::error: core::num::error::ParseIntError
pub clipboard_history_core::Error::Io
pub clipboard_history_core::Error::Io::context: alloc::borrow::Cow<'static, str>
pub clipboard_history_core::Error::Io::error: std::io::error::Error
impl clipboard_history_core::Error
pub fn clipboard_history_core::Error::into_report<W: error_stack::context::Context>(self, wrapper: W) -> error_stack::report::Report<W>
impl core::convert::From<clipboard_history_core::protocol::IdNotFoundError> for clipboard_history_core::Error
pub fn clipboard_history_core::Error::from(source: clipboard_history_core::protocol::IdNotFoundError) -> Self
impl core::error::Error for clipboard_history_core::Error
pub fn clipboard_history_core::Error::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
impl core::fmt::Debug for clipboard_history_core::Error
pub fn clipboard_history_core::Error::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for clipboard_history_core::Error
pub fn clipboard_history_core::Error::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_core::Error
impl core::marker::Send for clipboard_history_core::Error
impl core::marker::Sync for clipboard_history_core::Error
impl core::marker::Unpin for clipboard_history_core::Error
impl !core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::Error
impl !core::panic::unwind_safe::UnwindSafe for clipboard_history_core::Error
impl<C> error_stack::context::Context for clipboard_history_core::Error where C: core::error::Error + core::marker::Send + core::marker::Sync + 'static
pub fn clipboard_history_core::Error::provide<'a>(&'a self, request: &mut core::error::Request<'a>)
impl<T, U> core::convert::Into<U> for clipboard_history_core::Error where U: core::convert::From<T>
pub fn clipboard_history_core::Error::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::Error where U: core::convert::Into<T>
pub type clipboard_history_core::Error::Error = core::convert::Infallible
pub fn clipboard_history_core::Error::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::Error where U: core::convert::TryFrom<T>
pub type clipboard_history_core::Error::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::Error::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::string::ToString for clipboard_history_core::Error where T: core::fmt::Display + ?core::marker::Sized
pub fn clipboard_history_core::Error::to_string(&self) -> alloc::string::String
impl<T> core::any::Any for clipboard_history_core::Error where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::Error::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::Error where T: ?core::marker::Sized
pub fn clipboard_history_core::Error::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::Error where T: ?core::marker::Sized
pub fn clipboard_history_core::Error::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::Error
pub fn clipboard_history_core::Error::from(t: T) -> T
pub struct clipboard_history_core::BucketAndIndex(_)
impl clipboard_history_core::BucketAndIndex
pub fn clipboard_history_core::BucketAndIndex::bucket(&self) -> u8
pub const fn clipboard_history_core::BucketAndIndex::index(&self) -> u32
pub fn clipboard_history_core::BucketAndIndex::new(bucket: u8, index: u32) -> Self
impl core::clone::Clone for clipboard_history_core::BucketAndIndex
pub fn clipboard_history_core::BucketAndIndex::clone(&self) -> clipboard_history_core::BucketAndIndex
impl core::cmp::Eq for clipboard_history_core::BucketAndIndex
impl core::cmp::Ord for clipboard_history_core::BucketAndIndex
pub fn clipboard_history_core::BucketAndIndex::cmp(&self, other: &clipboard_history_core::BucketAndIndex) -> core::cmp::Ordering
impl core::cmp::PartialEq for clipboard_history_core::BucketAndIndex
pub fn clipboard_history_core::BucketAndIndex::eq(&self, other: &clipboard_history_core::BucketAndIndex) -> bool
impl core::cmp::PartialOrd for clipboard_history_core::BucketAndIndex
pub fn clipboard_history_core::BucketAndIndex::partial_cmp(&self, other: &clipboard_history_core::BucketAndIndex) -> core::option::Option<core::cmp::Ordering>
impl core::fmt::Debug for clipboard_history_core::BucketAndIndex
pub fn clipboard_history_core::BucketAndIndex::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for clipboard_history_core::BucketAndIndex
pub fn clipboard_history_core::BucketAndIndex::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for clipboard_history_core::BucketAndIndex
impl core::marker::StructuralPartialEq for clipboard_history_core::BucketAndIndex
impl core::marker::Freeze for clipboard_history_core::BucketAndIndex
impl core::marker::Send for clipboard_history_core::BucketAndIndex
impl core::marker::Sync for clipboard_history_core::BucketAndIndex
impl core::marker::Unpin for clipboard_history_core::BucketAndIndex
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::BucketAndIndex
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::BucketAndIndex
impl<T, U> core::convert::Into<U> for clipboard_history_core::BucketAndIndex where U: core::convert::From<T>
pub fn clipboard_history_core::BucketAndIndex::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::BucketAndIndex where U: core::convert::Into<T>
pub type clipboard_history_core::BucketAndIndex::Error = core::convert::Infallible
pub fn clipboard_history_core::BucketAndIndex::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::BucketAndIndex where U: core::convert::TryFrom<T>
pub type clipboard_history_core::BucketAndIndex::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::BucketAndIndex::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::BucketAndIndex where T: core::clone::Clone
pub type clipboard_history_core::BucketAndIndex::Owned = T
pub fn clipboard_history_core::BucketAndIndex::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::BucketAndIndex::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::BucketAndIndex where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::BucketAndIndex::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::BucketAndIndex where T: ?core::marker::Sized
pub fn clipboard_history_core::BucketAndIndex::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::BucketAndIndex where T: ?core::marker::Sized
pub fn clipboard_history_core::BucketAndIndex::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::BucketAndIndex where T: core::clone::Clone
pub unsafe fn clipboard_history_core::BucketAndIndex::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::BucketAndIndex
pub fn clipboard_history_core::BucketAndIndex::from(t: T) -> T
pub struct clipboard_history_core::LeaveBe
impl core::marker::Freeze for clipboard_history_core::LeaveBe
impl core::marker::Send for clipboard_history_core::LeaveBe
impl core::marker::Sync for clipboard_history_core::LeaveBe
impl core::marker::Unpin for clipboard_history_core::LeaveBe
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::LeaveBe
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::LeaveBe
impl<T, U> core::convert::Into<U> for clipboard_history_core::LeaveBe where U: core::convert::From<T>
pub fn clipboard_history_core::LeaveBe::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::LeaveBe where U: core::convert::Into<T>
pub type clipboard_history_core::LeaveBe::Error = core::convert::Infallible
pub fn clipboard_history_core::LeaveBe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::LeaveBe where U: core::convert::TryFrom<T>
pub type clipboard_history_core::LeaveBe::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::LeaveBe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::LeaveBe where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::LeaveBe::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::LeaveBe where T: ?core::marker::Sized
pub fn clipboard_history_core::LeaveBe::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::LeaveBe where T: ?core::marker::Sized
pub fn clipboard_history_core::LeaveBe::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::LeaveBe
pub fn clipboard_history_core::LeaveBe::from(t: T) -> T
pub struct clipboard_history_core::PathView<'a>(_)
impl<'a> clipboard_history_core::PathView<'a>
pub fn clipboard_history_core::PathView<'a>::new(path: &'a mut std::path::PathBuf, child: impl core::convert::AsRef<std::path::Path>) -> Self
impl core::convert::AsRef<std::path::Path> for clipboard_history_core::PathView<'_>
pub fn clipboard_history_core::PathView<'_>::as_ref(&self) -> &std::path::Path
impl core::fmt::Debug for clipboard_history_core::PathView<'_>
pub fn clipboard_history_core::PathView<'_>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::ops::deref::Deref for clipboard_history_core::PathView<'_>
pub type clipboard_history_core::PathView<'_>::Target = std::path::PathBuf
pub fn clipboard_history_core::PathView<'_>::deref(&self) -> &Self::Target
impl core::ops::deref::DerefMut for clipboard_history_core::PathView<'_>
pub fn clipboard_history_core::PathView<'_>::deref_mut(&mut self) -> &mut Self::Target
impl core::ops::drop::Drop for clipboard_history_core::PathView<'_>
pub fn clipboard_history_core::PathView<'_>::drop(&mut self)
impl<'a> core::marker::Freeze for clipboard_history_core::PathView<'a>
impl<'a> core::marker::Send for clipboard_history_core::PathView<'a>
impl<'a> core::marker::Sync for clipboard_history_core::PathView<'a>
impl<'a> core::marker::Unpin for clipboard_history_core::PathView<'a>
impl<'a> core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::PathView<'a>
impl<'a> !core::panic::unwind_safe::UnwindSafe for clipboard_history_core::PathView<'a>
impl<P, T> core::ops::deref::Receiver for clipboard_history_core::PathView<'a> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
pub type clipboard_history_core::PathView<'a>::Target = T
impl<T, U> core::convert::Into<U> for clipboard_history_core::PathView<'a> where U: core::convert::From<T>
pub fn clipboard_history_core::PathView<'a>::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::PathView<'a> where U: core::convert::Into<T>
pub type clipboard_history_core::PathView<'a>::Error = core::convert::Infallible
pub fn clipboard_history_core::PathView<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::PathView<'a> where U: core::convert::TryFrom<T>
pub type clipboard_history_core::PathView<'a>::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::PathView<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::PathView<'a> where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::PathView<'a>::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::PathView<'a> where T: ?core::marker::Sized
pub fn clipboard_history_core::PathView<'a>::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::PathView<'a> where T: ?core::marker::Sized
pub fn clipboard_history_core::PathView<'a>::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::PathView<'a>
pub fn clipboard_history_core::PathView<'a>::from(t: T) -> T
pub struct clipboard_history_core::RingAndIndex(_)
impl clipboard_history_core::RingAndIndex
pub fn clipboard_history_core::RingAndIndex::from_id(composite_id: u64) -> core::result::Result<Self, clipboard_history_core::protocol::IdNotFoundError>
pub fn clipboard_history_core::RingAndIndex::id(self) -> u64
pub const fn clipboard_history_core::RingAndIndex::index(self) -> u32
pub fn clipboard_history_core::RingAndIndex::new(ring: clipboard_history_core::protocol::RingKind, index: u32) -> Self
pub fn clipboard_history_core::RingAndIndex::ring(self) -> clipboard_history_core::protocol::RingKind
impl core::clone::Clone for clipboard_history_core::RingAndIndex
pub fn clipboard_history_core::RingAndIndex::clone(&self) -> clipboard_history_core::RingAndIndex
impl core::cmp::Eq for clipboard_history_core::RingAndIndex
impl core::cmp::Ord for clipboard_history_core::RingAndIndex
pub fn clipboard_history_core::RingAndIndex::cmp(&self, other: &clipboard_history_core::RingAndIndex) -> core::cmp::Ordering
impl core::cmp::PartialEq for clipboard_history_core::RingAndIndex
pub fn clipboard_history_core::RingAndIndex::eq(&self, other: &clipboard_history_core::RingAndIndex) -> bool
impl core::cmp::PartialOrd for clipboard_history_core::RingAndIndex
pub fn clipboard_history_core::RingAndIndex::partial_cmp(&self, other: &clipboard_history_core::RingAndIndex) -> core::option::Option<core::cmp::Ordering>
impl core::fmt::Debug for clipboard_history_core::RingAndIndex
pub fn clipboard_history_core::RingAndIndex::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for clipboard_history_core::RingAndIndex
pub fn clipboard_history_core::RingAndIndex::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for clipboard_history_core::RingAndIndex
impl core::marker::StructuralPartialEq for clipboard_history_core::RingAndIndex
impl core::marker::Freeze for clipboard_history_core::RingAndIndex
impl core::marker::Send for clipboard_history_core::RingAndIndex
impl core::marker::Sync for clipboard_history_core::RingAndIndex
impl core::marker::Unpin for clipboard_history_core::RingAndIndex
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::RingAndIndex
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::RingAndIndex
impl<T, U> core::convert::Into<U> for clipboard_history_core::RingAndIndex where U: core::convert::From<T>
pub fn clipboard_history_core::RingAndIndex::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::RingAndIndex where U: core::convert::Into<T>
pub type clipboard_history_core::RingAndIndex::Error = core::convert::Infallible
pub fn clipboard_history_core::RingAndIndex::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::RingAndIndex where U: core::convert::TryFrom<T>
pub type clipboard_history_core::RingAndIndex::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::RingAndIndex::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_core::RingAndIndex where T: core::clone::Clone
pub type clipboard_history_core::RingAndIndex::Owned = T
pub fn clipboard_history_core::RingAndIndex::clone_into(&self, target: &mut T)
pub fn clipboard_history_core::RingAndIndex::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_core::RingAndIndex where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::RingAndIndex::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::RingAndIndex where T: ?core::marker::Sized
pub fn clipboard_history_core::RingAndIndex::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::RingAndIndex where T: ?core::marker::Sized
pub fn clipboard_history_core::RingAndIndex::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_core::RingAndIndex where T: core::clone::Clone
pub unsafe fn clipboard_history_core::RingAndIndex::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_core::RingAndIndex
pub fn clipboard_history_core::RingAndIndex::from(t: T) -> T
pub struct clipboard_history_core::SendKillAndTakeover
impl core::marker::Freeze for clipboard_history_core::SendKillAndTakeover
impl core::marker::Send for clipboard_history_core::SendKillAndTakeover
impl core::marker::Sync for clipboard_history_core::SendKillAndTakeover
impl core::marker::Unpin for clipboard_history_core::SendKillAndTakeover
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::SendKillAndTakeover
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::SendKillAndTakeover
impl<T, U> core::convert::Into<U> for clipboard_history_core::SendKillAndTakeover where U: core::convert::From<T>
pub fn clipboard_history_core::SendKillAndTakeover::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::SendKillAndTakeover where U: core::convert::Into<T>
pub type clipboard_history_core::SendKillAndTakeover::Error = core::convert::Infallible
pub fn clipboard_history_core::SendKillAndTakeover::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::SendKillAndTakeover where U: core::convert::TryFrom<T>
pub type clipboard_history_core::SendKillAndTakeover::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::SendKillAndTakeover::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::SendKillAndTakeover where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::SendKillAndTakeover::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::SendKillAndTakeover where T: ?core::marker::Sized
pub fn clipboard_history_core::SendKillAndTakeover::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::SendKillAndTakeover where T: ?core::marker::Sized
pub fn clipboard_history_core::SendKillAndTakeover::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::SendKillAndTakeover
pub fn clipboard_history_core::SendKillAndTakeover::from(t: T) -> T
pub struct clipboard_history_core::SendQuitAndWait
impl core::marker::Freeze for clipboard_history_core::SendQuitAndWait
impl core::marker::Send for clipboard_history_core::SendQuitAndWait
impl core::marker::Sync for clipboard_history_core::SendQuitAndWait
impl core::marker::Unpin for clipboard_history_core::SendQuitAndWait
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::SendQuitAndWait
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_core::SendQuitAndWait
impl<T, U> core::convert::Into<U> for clipboard_history_core::SendQuitAndWait where U: core::convert::From<T>
pub fn clipboard_history_core::SendQuitAndWait::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::SendQuitAndWait where U: core::convert::Into<T>
pub type clipboard_history_core::SendQuitAndWait::Error = core::convert::Infallible
pub fn clipboard_history_core::SendQuitAndWait::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::SendQuitAndWait where U: core::convert::TryFrom<T>
pub type clipboard_history_core::SendQuitAndWait::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::SendQuitAndWait::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::SendQuitAndWait where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::SendQuitAndWait::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::SendQuitAndWait where T: ?core::marker::Sized
pub fn clipboard_history_core::SendQuitAndWait::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::SendQuitAndWait where T: ?core::marker::Sized
pub fn clipboard_history_core::SendQuitAndWait::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::SendQuitAndWait
pub fn clipboard_history_core::SendQuitAndWait::from(t: T) -> T
pub struct clipboard_history_core::StringView<'a>(_, _)
impl<'a> clipboard_history_core::StringView<'a>
pub fn clipboard_history_core::StringView<'a>::new(s: &'a mut alloc::string::String) -> Self
impl core::convert::AsRef<str> for clipboard_history_core::StringView<'_>
pub fn clipboard_history_core::StringView<'_>::as_ref(&self) -> &str
impl core::fmt::Debug for clipboard_history_core::StringView<'_>
pub fn clipboard_history_core::StringView<'_>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::ops::deref::Deref for clipboard_history_core::StringView<'_>
pub type clipboard_history_core::StringView<'_>::Target = alloc::string::String
pub fn clipboard_history_core::StringView<'_>::deref(&self) -> &Self::Target
impl core::ops::deref::DerefMut for clipboard_history_core::StringView<'_>
pub fn clipboard_history_core::StringView<'_>::deref_mut(&mut self) -> &mut Self::Target
impl core::ops::drop::Drop for clipboard_history_core::StringView<'_>
pub fn clipboard_history_core::StringView<'_>::drop(&mut self)
impl<'a> core::marker::Freeze for clipboard_history_core::StringView<'a>
impl<'a> core::marker::Send for clipboard_history_core::StringView<'a>
impl<'a> core::marker::Sync for clipboard_history_core::StringView<'a>
impl<'a> core::marker::Unpin for clipboard_history_core::StringView<'a>
impl<'a> core::panic::unwind_safe::RefUnwindSafe for clipboard_history_core::StringView<'a>
impl<'a> !core::panic::unwind_safe::UnwindSafe for clipboard_history_core::StringView<'a>
impl<P, T> core::ops::deref::Receiver for clipboard_history_core::StringView<'a> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
pub type clipboard_history_core::StringView<'a>::Target = T
impl<T, U> core::convert::Into<U> for clipboard_history_core::StringView<'a> where U: core::convert::From<T>
pub fn clipboard_history_core::StringView<'a>::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_core::StringView<'a> where U: core::convert::Into<T>
pub type clipboard_history_core::StringView<'a>::Error = core::convert::Infallible
pub fn clipboard_history_core::StringView<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
impl<T, U> core::convert::TryInto<U> for clipboard_history_core::StringView<'a> where U: core::convert::TryFrom<T>
pub type clipboard_history_core::StringView<'a>::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_core::StringView<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_core::StringView<'a> where T: 'static + ?core::marker::Sized
pub fn clipboard_history_core::StringView<'a>::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_core::StringView<'a> where T: ?core::marker::Sized
pub fn clipboard_history_core::StringView<'a>::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_core::StringView<'a> where T: ?core::marker::Sized
pub fn clipboard_history_core::StringView<'a>::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_core::StringView<'a>
pub fn clipboard_history_core::StringView<'a>::from(t: T) -> T
pub const clipboard_history_core::DIRECT_FILE_NAME_LEN: usize
pub const clipboard_history_core::NUM_BUCKETS: usize
pub trait clipboard_history_core::AsBytes: core::marker::Sized
pub fn clipboard_history_core::AsBytes::as_bytes(&self) -> &[u8]
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::AddResponse
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::GarbageCollectResponse
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::MoveToFrontResponse
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::RemoveResponse
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::Request
impl clipboard_history_core::AsBytes for clipboard_history_core::protocol::SwapResponse
pub trait clipboard_history_core::IoErr<Out>
pub fn clipboard_history_core::IoErr::map_io_err<I: core::convert::Into<alloc::borrow::Cow<'static, str>>>(self, f: impl core::ops::function::FnOnce() -> I) -> Out
impl<T> clipboard_history_core::IoErr<core::result::Result<T, clipboard_history_core::Error>> for core::result::Result<T, std::io::error::Error>
pub fn core::result::Result<T, std::io::error::Error>::map_io_err<I: core::convert::Into<alloc::borrow::Cow<'static, str>>>(self, context: impl core::ops::function::FnOnce() -> I) -> clipboard_history_core::Result<T>
impl<T> clipboard_history_core::IoErr<core::result::Result<T, clipboard_history_core::Error>> for rustix::io::errno::Result<T>
pub fn rustix::io::errno::Result<T>::map_io_err<I: core::convert::Into<alloc::borrow::Cow<'static, str>>>(self, context: impl core::ops::function::FnOnce() -> I) -> clipboard_history_core::Result<T>
pub fn clipboard_history_core::acquire_lock_file<Fd: std::os::fd::owned::AsFd + core::marker::Copy, P1: rustix::path::arg::Arg, P2: rustix::path::arg::Arg + core::marker::Copy, P3: rustix::path::arg::Arg + core::marker::Copy + core::fmt::Debug, A: clipboard_history_core::utils::lock_owned::LockAlreadyOwnedAction>(tmp_file_unsupported: &mut bool, dirfd: Fd, prepare_path: P1, prepare_fallback_path: P2, path: P3, _: A) -> clipboard_history_core::Result<<A as clipboard_history_core::utils::lock_owned::LockAlreadyOwnedAction>::Output>
pub const fn clipboard_history_core::bucket_to_length(bucket: usize) -> u16
pub fn clipboard_history_core::copy_file_range_all<InFd: std::os::fd::owned::AsFd, OutFd: std::os::fd::owned::AsFd>(fd_in: InFd, off_in: core::option::Option<&mut u64>, fd_out: OutFd, off_out: core::option::Option<&mut u64>, len: usize) -> rustix::io::errno::Result<usize>
pub fn clipboard_history_core::create_tmp_file<Fd: std::os::fd::owned::AsFd, P1: rustix::path::arg::Arg, P2: rustix::path::arg::Arg + core::marker::Copy>(tmp_file_unsupported: &mut bool, dirfd: Fd, path: P1, fallback_path: P2, oflags: rustix::backend::fs::types::OFlags, create_mode: rustix::backend::fs::types::Mode) -> rustix::io::errno::Result<std::os::fd::owned::OwnedFd>
pub fn clipboard_history_core::direct_file_name(buf: &mut [core::mem::maybe_uninit::MaybeUninit<u8>; 14], to: clipboard_history_core::protocol::RingKind, index: u32) -> &core::ffi::c_str::CStr
pub fn clipboard_history_core::init_unix_server<P: core::convert::AsRef<std::path::Path>>(socket_file: P, kind: rustix::net::types::SocketType) -> clipboard_history_core::Result<std::os::fd::owned::OwnedFd>
pub fn clipboard_history_core::is_plaintext_mime(mime: &str) -> bool
pub fn clipboard_history_core::link_tmp_file<Fd: std::os::fd::owned::AsFd, DirFd: std::os::fd::owned::AsFd, P: rustix::path::arg::Arg>(tmp_file: Fd, dirfd: DirFd, path: P) -> rustix::io::errno::Result<()>
pub fn clipboard_history_core::open_buckets<F: core::ops::function::FnMut(&str) -> clipboard_history_core::Result<std::os::fd::owned::OwnedFd>>(open: F) -> clipboard_history_core::Result<([std::os::fd::owned::OwnedFd; 11], [u64; 11])>
pub fn clipboard_history_core::proc_self_fd_buf<'a, Fd: std::os::fd::owned::AsFd>(buf: &'a mut [core::mem::maybe_uninit::MaybeUninit<u8>; 26], fd: &Fd) -> &'a core::ffi::c_str::CStr
pub fn clipboard_history_core::read_at_to_end<Fd: std::os::fd::owned::AsFd>(file: Fd, buf: core::io::borrowed_buf::BorrowedCursor<'_>, offset: u64) -> rustix::io::errno::Result<()>
pub fn clipboard_history_core::size_to_bucket(bytes: u16) -> u8
pub type clipboard_history_core::Result<T> = core::result::Result<T, clipboard_history_core::Error>