-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapi.golden
1282 lines (1282 loc) · 127 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
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
991
992
993
994
995
996
997
998
999
1000
pub mod clipboard_history_client_sdk
pub use clipboard_history_client_sdk::core
pub mod clipboard_history_client_sdk::api
pub struct clipboard_history_client_sdk::api::AddRequest
impl clipboard_history_client_sdk::api::AddRequest
pub unsafe fn clipboard_history_client_sdk::api::AddRequest::recv<Server: std::os::fd::owned::AsFd>(server: Server, flags: rustix::backend::net::send_recv::RecvFlags) -> core::result::Result<clipboard_history_core::protocol::Response<clipboard_history_core::protocol::AddResponse>, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::AddRequest::response<Server: std::os::fd::owned::AsFd, Data: std::os::fd::owned::AsFd>(server: Server, to: clipboard_history_core::protocol::RingKind, mime_type: clipboard_history_core::protocol::MimeType, data: Data) -> core::result::Result<clipboard_history_core::protocol::AddResponse, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::AddRequest::response_add_unchecked<Server: std::os::fd::owned::AsFd, Data: std::os::fd::owned::AsFd>(server: Server, to: clipboard_history_core::protocol::RingKind, mime_type: clipboard_history_core::protocol::MimeType, data: Data) -> core::result::Result<clipboard_history_core::protocol::AddResponse, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::AddRequest::send<Server: std::os::fd::owned::AsFd, Data: std::os::fd::owned::AsFd>(server: Server, to: clipboard_history_core::protocol::RingKind, mime_type: clipboard_history_core::protocol::MimeType, data: Data, flags: rustix::backend::net::send_recv::SendFlags) -> core::result::Result<(), clipboard_history_client_sdk::ClientError>
impl core::marker::Freeze for clipboard_history_client_sdk::api::AddRequest
impl core::marker::Send for clipboard_history_client_sdk::api::AddRequest
impl core::marker::Sync for clipboard_history_client_sdk::api::AddRequest
impl core::marker::Unpin for clipboard_history_client_sdk::api::AddRequest
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::api::AddRequest
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::api::AddRequest
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::api::AddRequest where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::api::AddRequest::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::api::AddRequest where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::api::AddRequest::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::api::AddRequest::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_client_sdk::api::AddRequest where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::api::AddRequest::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::api::AddRequest::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::api::AddRequest where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::AddRequest::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::api::AddRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::AddRequest::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::api::AddRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::AddRequest::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::api::AddRequest
pub fn clipboard_history_client_sdk::api::AddRequest::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::api::AddRequest
pub type clipboard_history_client_sdk::api::AddRequest::Init = T
pub const clipboard_history_client_sdk::api::AddRequest::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::api::AddRequest::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::api::AddRequest::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::api::AddRequest::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::api::AddRequest::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::api::AddRequest
pub struct clipboard_history_client_sdk::api::GarbageCollectRequest
impl clipboard_history_client_sdk::api::GarbageCollectRequest
pub unsafe fn clipboard_history_client_sdk::api::GarbageCollectRequest::recv<Server: std::os::fd::owned::AsFd>(server: Server, flags: rustix::backend::net::send_recv::RecvFlags) -> core::result::Result<clipboard_history_core::protocol::Response<clipboard_history_core::protocol::GarbageCollectResponse>, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::response<Server: std::os::fd::owned::AsFd>(server: Server, max_wasted_bytes: u64) -> core::result::Result<clipboard_history_core::protocol::GarbageCollectResponse, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::send<Server: std::os::fd::owned::AsFd>(server: Server, max_wasted_bytes: u64, flags: rustix::backend::net::send_recv::SendFlags) -> core::result::Result<(), clipboard_history_client_sdk::ClientError>
impl core::marker::Freeze for clipboard_history_client_sdk::api::GarbageCollectRequest
impl core::marker::Send for clipboard_history_client_sdk::api::GarbageCollectRequest
impl core::marker::Sync for clipboard_history_client_sdk::api::GarbageCollectRequest
impl core::marker::Unpin for clipboard_history_client_sdk::api::GarbageCollectRequest
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::api::GarbageCollectRequest
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::api::GarbageCollectRequest
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::api::GarbageCollectRequest where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::api::GarbageCollectRequest where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::api::GarbageCollectRequest::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::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_client_sdk::api::GarbageCollectRequest where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::api::GarbageCollectRequest::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::api::GarbageCollectRequest where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::api::GarbageCollectRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::api::GarbageCollectRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::api::GarbageCollectRequest
pub fn clipboard_history_client_sdk::api::GarbageCollectRequest::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::api::GarbageCollectRequest
pub type clipboard_history_client_sdk::api::GarbageCollectRequest::Init = T
pub const clipboard_history_client_sdk::api::GarbageCollectRequest::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::api::GarbageCollectRequest::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::api::GarbageCollectRequest::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::api::GarbageCollectRequest::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::api::GarbageCollectRequest::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::api::GarbageCollectRequest
pub struct clipboard_history_client_sdk::api::MoveToFrontRequest
impl clipboard_history_client_sdk::api::MoveToFrontRequest
pub unsafe fn clipboard_history_client_sdk::api::MoveToFrontRequest::recv<Server: std::os::fd::owned::AsFd>(server: Server, flags: rustix::backend::net::send_recv::RecvFlags) -> core::result::Result<clipboard_history_core::protocol::Response<clipboard_history_core::protocol::MoveToFrontResponse>, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::response<Server: std::os::fd::owned::AsFd>(server: Server, id: u64, to: core::option::Option<clipboard_history_core::protocol::RingKind>) -> core::result::Result<clipboard_history_core::protocol::MoveToFrontResponse, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::send<Server: std::os::fd::owned::AsFd>(server: Server, id: u64, to: core::option::Option<clipboard_history_core::protocol::RingKind>, flags: rustix::backend::net::send_recv::SendFlags) -> core::result::Result<(), clipboard_history_client_sdk::ClientError>
impl core::marker::Freeze for clipboard_history_client_sdk::api::MoveToFrontRequest
impl core::marker::Send for clipboard_history_client_sdk::api::MoveToFrontRequest
impl core::marker::Sync for clipboard_history_client_sdk::api::MoveToFrontRequest
impl core::marker::Unpin for clipboard_history_client_sdk::api::MoveToFrontRequest
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::api::MoveToFrontRequest
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::api::MoveToFrontRequest
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::api::MoveToFrontRequest where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::api::MoveToFrontRequest where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::api::MoveToFrontRequest::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::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_client_sdk::api::MoveToFrontRequest where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::api::MoveToFrontRequest::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::api::MoveToFrontRequest where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::api::MoveToFrontRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::api::MoveToFrontRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::api::MoveToFrontRequest
pub fn clipboard_history_client_sdk::api::MoveToFrontRequest::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::api::MoveToFrontRequest
pub type clipboard_history_client_sdk::api::MoveToFrontRequest::Init = T
pub const clipboard_history_client_sdk::api::MoveToFrontRequest::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::api::MoveToFrontRequest::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::api::MoveToFrontRequest::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::api::MoveToFrontRequest::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::api::MoveToFrontRequest::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::api::MoveToFrontRequest
#[repr(C)] pub struct clipboard_history_client_sdk::api::PasteCommand
pub clipboard_history_client_sdk::api::PasteCommand::id: u64
pub clipboard_history_client_sdk::api::PasteCommand::mime: clipboard_history_core::protocol::MimeType
pub clipboard_history_client_sdk::api::PasteCommand::trigger_paste: bool
impl clipboard_history_core::utils::AsBytes for clipboard_history_client_sdk::api::PasteCommand
impl core::clone::Clone for clipboard_history_client_sdk::api::PasteCommand
pub fn clipboard_history_client_sdk::api::PasteCommand::clone(&self) -> clipboard_history_client_sdk::api::PasteCommand
impl core::fmt::Debug for clipboard_history_client_sdk::api::PasteCommand
pub fn clipboard_history_client_sdk::api::PasteCommand::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_client_sdk::api::PasteCommand
impl core::marker::Freeze for clipboard_history_client_sdk::api::PasteCommand
impl core::marker::Send for clipboard_history_client_sdk::api::PasteCommand
impl core::marker::Sync for clipboard_history_client_sdk::api::PasteCommand
impl core::marker::Unpin for clipboard_history_client_sdk::api::PasteCommand
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::api::PasteCommand
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::api::PasteCommand
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::api::PasteCommand where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::api::PasteCommand::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::api::PasteCommand where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::api::PasteCommand::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::api::PasteCommand::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_client_sdk::api::PasteCommand where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::api::PasteCommand::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::api::PasteCommand::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_client_sdk::api::PasteCommand where T: core::clone::Clone
pub type clipboard_history_client_sdk::api::PasteCommand::Owned = T
pub fn clipboard_history_client_sdk::api::PasteCommand::clone_into(&self, target: &mut T)
pub fn clipboard_history_client_sdk::api::PasteCommand::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_client_sdk::api::PasteCommand where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::PasteCommand::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::api::PasteCommand where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::PasteCommand::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::api::PasteCommand where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::PasteCommand::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_client_sdk::api::PasteCommand where T: core::clone::Clone
pub unsafe fn clipboard_history_client_sdk::api::PasteCommand::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_client_sdk::api::PasteCommand
pub fn clipboard_history_client_sdk::api::PasteCommand::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::api::PasteCommand
pub type clipboard_history_client_sdk::api::PasteCommand::Init = T
pub const clipboard_history_client_sdk::api::PasteCommand::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::api::PasteCommand::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::api::PasteCommand::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::api::PasteCommand::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::api::PasteCommand::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::api::PasteCommand
pub struct clipboard_history_client_sdk::api::RemoveRequest
impl clipboard_history_client_sdk::api::RemoveRequest
pub unsafe fn clipboard_history_client_sdk::api::RemoveRequest::recv<Server: std::os::fd::owned::AsFd>(server: Server, flags: rustix::backend::net::send_recv::RecvFlags) -> core::result::Result<clipboard_history_core::protocol::Response<clipboard_history_core::protocol::RemoveResponse>, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::RemoveRequest::response<Server: std::os::fd::owned::AsFd>(server: Server, id: u64) -> core::result::Result<clipboard_history_core::protocol::RemoveResponse, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::RemoveRequest::send<Server: std::os::fd::owned::AsFd>(server: Server, id: u64, flags: rustix::backend::net::send_recv::SendFlags) -> core::result::Result<(), clipboard_history_client_sdk::ClientError>
impl core::marker::Freeze for clipboard_history_client_sdk::api::RemoveRequest
impl core::marker::Send for clipboard_history_client_sdk::api::RemoveRequest
impl core::marker::Sync for clipboard_history_client_sdk::api::RemoveRequest
impl core::marker::Unpin for clipboard_history_client_sdk::api::RemoveRequest
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::api::RemoveRequest
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::api::RemoveRequest
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::api::RemoveRequest where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::api::RemoveRequest::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::api::RemoveRequest where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::api::RemoveRequest::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::api::RemoveRequest::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_client_sdk::api::RemoveRequest where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::api::RemoveRequest::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::api::RemoveRequest::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::api::RemoveRequest where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::RemoveRequest::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::api::RemoveRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::RemoveRequest::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::api::RemoveRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::RemoveRequest::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::api::RemoveRequest
pub fn clipboard_history_client_sdk::api::RemoveRequest::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::api::RemoveRequest
pub type clipboard_history_client_sdk::api::RemoveRequest::Init = T
pub const clipboard_history_client_sdk::api::RemoveRequest::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::api::RemoveRequest::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::api::RemoveRequest::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::api::RemoveRequest::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::api::RemoveRequest::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::api::RemoveRequest
pub struct clipboard_history_client_sdk::api::SwapRequest
impl clipboard_history_client_sdk::api::SwapRequest
pub unsafe fn clipboard_history_client_sdk::api::SwapRequest::recv<Server: std::os::fd::owned::AsFd>(server: Server, flags: rustix::backend::net::send_recv::RecvFlags) -> core::result::Result<clipboard_history_core::protocol::Response<clipboard_history_core::protocol::SwapResponse>, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::SwapRequest::response<Server: std::os::fd::owned::AsFd>(server: Server, id1: u64, id2: u64) -> core::result::Result<clipboard_history_core::protocol::SwapResponse, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::SwapRequest::send<Server: std::os::fd::owned::AsFd>(server: Server, id1: u64, id2: u64, flags: rustix::backend::net::send_recv::SendFlags) -> core::result::Result<(), clipboard_history_client_sdk::ClientError>
impl core::marker::Freeze for clipboard_history_client_sdk::api::SwapRequest
impl core::marker::Send for clipboard_history_client_sdk::api::SwapRequest
impl core::marker::Sync for clipboard_history_client_sdk::api::SwapRequest
impl core::marker::Unpin for clipboard_history_client_sdk::api::SwapRequest
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::api::SwapRequest
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::api::SwapRequest
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::api::SwapRequest where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::api::SwapRequest::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::api::SwapRequest where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::api::SwapRequest::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::api::SwapRequest::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_client_sdk::api::SwapRequest where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::api::SwapRequest::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::api::SwapRequest::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::api::SwapRequest where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::SwapRequest::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::api::SwapRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::SwapRequest::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::api::SwapRequest where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::api::SwapRequest::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::api::SwapRequest
pub fn clipboard_history_client_sdk::api::SwapRequest::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::api::SwapRequest
pub type clipboard_history_client_sdk::api::SwapRequest::Init = T
pub const clipboard_history_client_sdk::api::SwapRequest::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::api::SwapRequest::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::api::SwapRequest::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::api::SwapRequest::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::api::SwapRequest::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::api::SwapRequest
pub const clipboard_history_client_sdk::api::PASTE_SERVER_PROTOCOL_VERSION: u8
pub fn clipboard_history_client_sdk::api::connect_to_paste_server(addr: &rustix::backend::net::addr::SocketAddrUnix) -> core::result::Result<std::os::fd::owned::OwnedFd, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::connect_to_server(addr: &rustix::backend::net::addr::SocketAddrUnix) -> core::result::Result<std::os::fd::owned::OwnedFd, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::connect_to_server_with(addr: &rustix::backend::net::addr::SocketAddrUnix, flags: rustix::net::types::SocketFlags) -> core::result::Result<std::os::fd::owned::OwnedFd, clipboard_history_client_sdk::ClientError>
pub fn clipboard_history_client_sdk::api::send_paste_buffer(server: impl std::os::fd::owned::AsFd, entry: clipboard_history_client_sdk::Entry, reader: &mut clipboard_history_client_sdk::EntryReader, trigger_paste: bool) -> clipboard_history_core::Result<()>
pub mod clipboard_history_client_sdk::config
pub enum clipboard_history_client_sdk::config::X11Config
pub clipboard_history_client_sdk::config::X11Config::V1(clipboard_history_client_sdk::config::X11V1Config)
impl core::default::Default for clipboard_history_client_sdk::config::X11Config
pub fn clipboard_history_client_sdk::config::X11Config::default() -> Self
impl core::fmt::Debug for clipboard_history_client_sdk::config::X11Config
pub fn clipboard_history_client_sdk::config::X11Config::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl serde::ser::Serialize for clipboard_history_client_sdk::config::X11Config
pub fn clipboard_history_client_sdk::config::X11Config::serialize<__S>(&self, __serializer: __S) -> core::result::Result<<__S as serde::ser::Serializer>::Ok, <__S as serde::ser::Serializer>::Error> where __S: serde::ser::Serializer
impl<'de> serde::de::Deserialize<'de> for clipboard_history_client_sdk::config::X11Config
pub fn clipboard_history_client_sdk::config::X11Config::deserialize<__D>(__deserializer: __D) -> core::result::Result<Self, <__D as serde::de::Deserializer>::Error> where __D: serde::de::Deserializer<'de>
impl core::marker::Freeze for clipboard_history_client_sdk::config::X11Config
impl core::marker::Send for clipboard_history_client_sdk::config::X11Config
impl core::marker::Sync for clipboard_history_client_sdk::config::X11Config
impl core::marker::Unpin for clipboard_history_client_sdk::config::X11Config
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::config::X11Config
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::config::X11Config
impl<R, P> lebe::io::ReadPrimitive<R> for clipboard_history_client_sdk::config::X11Config where R: std::io::Read + lebe::io::ReadEndian<P>, P: core::default::Default
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::config::X11Config where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::config::X11Config::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::config::X11Config where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::config::X11Config::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::config::X11Config::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_client_sdk::config::X11Config where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::config::X11Config::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::config::X11Config::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::config::X11Config where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::config::X11Config::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::config::X11Config where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::config::X11Config::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::config::X11Config where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::config::X11Config::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::config::X11Config
pub fn clipboard_history_client_sdk::config::X11Config::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::config::X11Config
pub type clipboard_history_client_sdk::config::X11Config::Init = T
pub const clipboard_history_client_sdk::config::X11Config::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::config::X11Config::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::config::X11Config::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::config::X11Config::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::config::X11Config::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::config::X11Config
impl<T> serde::de::DeserializeOwned for clipboard_history_client_sdk::config::X11Config where T: for<'de> serde::de::Deserialize<'de>
pub struct clipboard_history_client_sdk::config::X11V1Config
pub clipboard_history_client_sdk::config::X11V1Config::auto_paste: bool
impl core::default::Default for clipboard_history_client_sdk::config::X11V1Config
pub fn clipboard_history_client_sdk::config::X11V1Config::default() -> Self
impl core::fmt::Debug for clipboard_history_client_sdk::config::X11V1Config
pub fn clipboard_history_client_sdk::config::X11V1Config::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl serde::ser::Serialize for clipboard_history_client_sdk::config::X11V1Config
pub fn clipboard_history_client_sdk::config::X11V1Config::serialize<__S>(&self, __serializer: __S) -> core::result::Result<<__S as serde::ser::Serializer>::Ok, <__S as serde::ser::Serializer>::Error> where __S: serde::ser::Serializer
impl<'de> serde::de::Deserialize<'de> for clipboard_history_client_sdk::config::X11V1Config
pub fn clipboard_history_client_sdk::config::X11V1Config::deserialize<__D>(__deserializer: __D) -> core::result::Result<Self, <__D as serde::de::Deserializer>::Error> where __D: serde::de::Deserializer<'de>
impl core::marker::Freeze for clipboard_history_client_sdk::config::X11V1Config
impl core::marker::Send for clipboard_history_client_sdk::config::X11V1Config
impl core::marker::Sync for clipboard_history_client_sdk::config::X11V1Config
impl core::marker::Unpin for clipboard_history_client_sdk::config::X11V1Config
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::config::X11V1Config
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::config::X11V1Config
impl<R, P> lebe::io::ReadPrimitive<R> for clipboard_history_client_sdk::config::X11V1Config where R: std::io::Read + lebe::io::ReadEndian<P>, P: core::default::Default
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::config::X11V1Config where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::config::X11V1Config::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::config::X11V1Config where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::config::X11V1Config::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::config::X11V1Config::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_client_sdk::config::X11V1Config where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::config::X11V1Config::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::config::X11V1Config::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::config::X11V1Config where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::config::X11V1Config::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::config::X11V1Config where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::config::X11V1Config::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::config::X11V1Config where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::config::X11V1Config::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::config::X11V1Config
pub fn clipboard_history_client_sdk::config::X11V1Config::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::config::X11V1Config
pub type clipboard_history_client_sdk::config::X11V1Config::Init = T
pub const clipboard_history_client_sdk::config::X11V1Config::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::config::X11V1Config::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::config::X11V1Config::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::config::X11V1Config::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::config::X11V1Config::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::config::X11V1Config
impl<T> serde::de::DeserializeOwned for clipboard_history_client_sdk::config::X11V1Config where T: for<'de> serde::de::Deserialize<'de>
pub fn clipboard_history_client_sdk::config::x11_config_file() -> std::path::PathBuf
pub mod clipboard_history_client_sdk::duplicate_detection
pub struct clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
impl clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::add_entry(&mut self, entry: &clipboard_history_client_sdk::Entry, database: &clipboard_history_client_sdk::DatabaseReader, reader: &mut clipboard_history_client_sdk::EntryReader) -> core::result::Result<bool, clipboard_history_core::Error>
impl core::default::Default for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::default() -> clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
impl core::marker::Freeze for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
impl core::marker::Send for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
impl core::marker::Sync for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
impl core::marker::Unpin for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
impl<R, P> lebe::io::ReadPrimitive<R> for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector where R: std::io::Read + lebe::io::ReadEndian<P>, P: core::default::Default
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::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_client_sdk::duplicate_detection::DuplicateDetector where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
pub fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
pub type clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::Init = T
pub const clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::duplicate_detection::DuplicateDetector::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::duplicate_detection::DuplicateDetector
pub mod clipboard_history_client_sdk::search
pub enum clipboard_history_client_sdk::search::EntryLocation
pub clipboard_history_client_sdk::search::EntryLocation::Bucketed
pub clipboard_history_client_sdk::search::EntryLocation::Bucketed::bucket: u8
pub clipboard_history_client_sdk::search::EntryLocation::Bucketed::index: u32
pub clipboard_history_client_sdk::search::EntryLocation::File
pub clipboard_history_client_sdk::search::EntryLocation::File::entry_id: u64
impl core::clone::Clone for clipboard_history_client_sdk::search::EntryLocation
pub fn clipboard_history_client_sdk::search::EntryLocation::clone(&self) -> clipboard_history_client_sdk::search::EntryLocation
impl core::fmt::Debug for clipboard_history_client_sdk::search::EntryLocation
pub fn clipboard_history_client_sdk::search::EntryLocation::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_client_sdk::search::EntryLocation
impl core::marker::Freeze for clipboard_history_client_sdk::search::EntryLocation
impl core::marker::Send for clipboard_history_client_sdk::search::EntryLocation
impl core::marker::Sync for clipboard_history_client_sdk::search::EntryLocation
impl core::marker::Unpin for clipboard_history_client_sdk::search::EntryLocation
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::search::EntryLocation
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::search::EntryLocation
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::search::EntryLocation where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::search::EntryLocation::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::search::EntryLocation where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::search::EntryLocation::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::search::EntryLocation::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_client_sdk::search::EntryLocation where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::search::EntryLocation::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::search::EntryLocation::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_client_sdk::search::EntryLocation where T: core::clone::Clone
pub type clipboard_history_client_sdk::search::EntryLocation::Owned = T
pub fn clipboard_history_client_sdk::search::EntryLocation::clone_into(&self, target: &mut T)
pub fn clipboard_history_client_sdk::search::EntryLocation::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_client_sdk::search::EntryLocation where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::EntryLocation::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::search::EntryLocation where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::EntryLocation::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::search::EntryLocation where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::EntryLocation::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_client_sdk::search::EntryLocation where T: core::clone::Clone
pub unsafe fn clipboard_history_client_sdk::search::EntryLocation::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_client_sdk::search::EntryLocation
pub fn clipboard_history_client_sdk::search::EntryLocation::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::search::EntryLocation
pub type clipboard_history_client_sdk::search::EntryLocation::Init = T
pub const clipboard_history_client_sdk::search::EntryLocation::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::search::EntryLocation::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::search::EntryLocation::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::search::EntryLocation::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::search::EntryLocation::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::search::EntryLocation
pub enum clipboard_history_client_sdk::search::Query<'a>
pub clipboard_history_client_sdk::search::Query::Mimes(regex::regex::bytes::Regex)
pub clipboard_history_client_sdk::search::Query::Plain(&'a [u8])
pub clipboard_history_client_sdk::search::Query::PlainIgnoreCase(clipboard_history_client_sdk::search::CaselessQuery)
pub clipboard_history_client_sdk::search::Query::Regex(regex::regex::bytes::Regex)
impl<'a> core::clone::Clone for clipboard_history_client_sdk::search::Query<'a>
pub fn clipboard_history_client_sdk::search::Query<'a>::clone(&self) -> clipboard_history_client_sdk::search::Query<'a>
impl<'a> core::fmt::Debug for clipboard_history_client_sdk::search::Query<'a>
pub fn clipboard_history_client_sdk::search::Query<'a>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl<'a> core::marker::Freeze for clipboard_history_client_sdk::search::Query<'a>
impl<'a> core::marker::Send for clipboard_history_client_sdk::search::Query<'a>
impl<'a> core::marker::Sync for clipboard_history_client_sdk::search::Query<'a>
impl<'a> core::marker::Unpin for clipboard_history_client_sdk::search::Query<'a>
impl<'a> core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::search::Query<'a>
impl<'a> core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::search::Query<'a>
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::search::Query<'a> where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::search::Query<'a>::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::search::Query<'a> where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::search::Query<'a>::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::search::Query<'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_client_sdk::search::Query<'a> where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::search::Query<'a>::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::search::Query<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_client_sdk::search::Query<'a> where T: core::clone::Clone
pub type clipboard_history_client_sdk::search::Query<'a>::Owned = T
pub fn clipboard_history_client_sdk::search::Query<'a>::clone_into(&self, target: &mut T)
pub fn clipboard_history_client_sdk::search::Query<'a>::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_client_sdk::search::Query<'a> where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::Query<'a>::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::search::Query<'a> where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::Query<'a>::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::search::Query<'a> where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::Query<'a>::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_client_sdk::search::Query<'a> where T: core::clone::Clone
pub unsafe fn clipboard_history_client_sdk::search::Query<'a>::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_client_sdk::search::Query<'a>
pub fn clipboard_history_client_sdk::search::Query<'a>::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::search::Query<'a>
pub type clipboard_history_client_sdk::search::Query<'a>::Init = T
pub const clipboard_history_client_sdk::search::Query<'a>::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::search::Query<'a>::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::search::Query<'a>::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::search::Query<'a>::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::search::Query<'a>::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::search::Query<'a>
pub struct clipboard_history_client_sdk::search::CancellationToken
impl clipboard_history_client_sdk::search::CancellationToken
pub fn clipboard_history_client_sdk::search::CancellationToken::cancel(&self)
pub fn clipboard_history_client_sdk::search::CancellationToken::is_cancelled(&self) -> bool
impl core::clone::Clone for clipboard_history_client_sdk::search::CancellationToken
pub fn clipboard_history_client_sdk::search::CancellationToken::clone(&self) -> clipboard_history_client_sdk::search::CancellationToken
impl core::fmt::Debug for clipboard_history_client_sdk::search::CancellationToken
pub fn clipboard_history_client_sdk::search::CancellationToken::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::search::CancellationToken
impl core::marker::Send for clipboard_history_client_sdk::search::CancellationToken
impl core::marker::Sync for clipboard_history_client_sdk::search::CancellationToken
impl core::marker::Unpin for clipboard_history_client_sdk::search::CancellationToken
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::search::CancellationToken
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::search::CancellationToken
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::search::CancellationToken where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::search::CancellationToken::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::search::CancellationToken where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::search::CancellationToken::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::search::CancellationToken::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_client_sdk::search::CancellationToken where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::search::CancellationToken::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::search::CancellationToken::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_client_sdk::search::CancellationToken where T: core::clone::Clone
pub type clipboard_history_client_sdk::search::CancellationToken::Owned = T
pub fn clipboard_history_client_sdk::search::CancellationToken::clone_into(&self, target: &mut T)
pub fn clipboard_history_client_sdk::search::CancellationToken::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_client_sdk::search::CancellationToken where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::CancellationToken::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::search::CancellationToken where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::CancellationToken::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::search::CancellationToken where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::CancellationToken::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_client_sdk::search::CancellationToken where T: core::clone::Clone
pub unsafe fn clipboard_history_client_sdk::search::CancellationToken::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_client_sdk::search::CancellationToken
pub fn clipboard_history_client_sdk::search::CancellationToken::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::search::CancellationToken
pub type clipboard_history_client_sdk::search::CancellationToken::Init = T
pub const clipboard_history_client_sdk::search::CancellationToken::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::search::CancellationToken::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::search::CancellationToken::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::search::CancellationToken::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::search::CancellationToken::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::search::CancellationToken
pub struct clipboard_history_client_sdk::search::CaselessQuery
impl clipboard_history_client_sdk::search::CaselessQuery
pub fn clipboard_history_client_sdk::search::CaselessQuery::new<Q: core::convert::Into<alloc::vec::Vec<u8>>>(query: Q) -> Self
pub const fn clipboard_history_client_sdk::search::CaselessQuery::trim(self) -> Self
impl core::clone::Clone for clipboard_history_client_sdk::search::CaselessQuery
pub fn clipboard_history_client_sdk::search::CaselessQuery::clone(&self) -> clipboard_history_client_sdk::search::CaselessQuery
impl core::fmt::Debug for clipboard_history_client_sdk::search::CaselessQuery
pub fn clipboard_history_client_sdk::search::CaselessQuery::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::search::CaselessQuery
impl core::marker::Send for clipboard_history_client_sdk::search::CaselessQuery
impl core::marker::Sync for clipboard_history_client_sdk::search::CaselessQuery
impl core::marker::Unpin for clipboard_history_client_sdk::search::CaselessQuery
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::search::CaselessQuery
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::search::CaselessQuery
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::search::CaselessQuery where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::search::CaselessQuery::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::search::CaselessQuery where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::search::CaselessQuery::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::search::CaselessQuery::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_client_sdk::search::CaselessQuery where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::search::CaselessQuery::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::search::CaselessQuery::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_client_sdk::search::CaselessQuery where T: core::clone::Clone
pub type clipboard_history_client_sdk::search::CaselessQuery::Owned = T
pub fn clipboard_history_client_sdk::search::CaselessQuery::clone_into(&self, target: &mut T)
pub fn clipboard_history_client_sdk::search::CaselessQuery::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_client_sdk::search::CaselessQuery where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::CaselessQuery::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::search::CaselessQuery where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::CaselessQuery::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::search::CaselessQuery where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::CaselessQuery::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_client_sdk::search::CaselessQuery where T: core::clone::Clone
pub unsafe fn clipboard_history_client_sdk::search::CaselessQuery::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_client_sdk::search::CaselessQuery
pub fn clipboard_history_client_sdk::search::CaselessQuery::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::search::CaselessQuery
pub type clipboard_history_client_sdk::search::CaselessQuery::Init = T
pub const clipboard_history_client_sdk::search::CaselessQuery::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::search::CaselessQuery::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::search::CaselessQuery::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::search::CaselessQuery::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::search::CaselessQuery::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::search::CaselessQuery
pub struct clipboard_history_client_sdk::search::QueryIter
impl clipboard_history_client_sdk::search::QueryIter
pub const fn clipboard_history_client_sdk::search::QueryIter::cancellation_token(&self) -> &clipboard_history_client_sdk::search::CancellationToken
impl core::iter::traits::iterator::Iterator for clipboard_history_client_sdk::search::QueryIter
pub type clipboard_history_client_sdk::search::QueryIter::Item = core::result::Result<clipboard_history_client_sdk::search::QueryResult, clipboard_history_core::Error>
pub fn clipboard_history_client_sdk::search::QueryIter::next(&mut self) -> core::option::Option<Self::Item>
impl core::ops::drop::Drop for clipboard_history_client_sdk::search::QueryIter
pub fn clipboard_history_client_sdk::search::QueryIter::drop(&mut self)
impl core::marker::Freeze for clipboard_history_client_sdk::search::QueryIter
impl core::marker::Send for clipboard_history_client_sdk::search::QueryIter
impl !core::marker::Sync for clipboard_history_client_sdk::search::QueryIter
impl core::marker::Unpin for clipboard_history_client_sdk::search::QueryIter
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::search::QueryIter
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::search::QueryIter
impl<I> core::iter::traits::collect::IntoIterator for clipboard_history_client_sdk::search::QueryIter where I: core::iter::traits::iterator::Iterator
pub type clipboard_history_client_sdk::search::QueryIter::IntoIter = I
pub type clipboard_history_client_sdk::search::QueryIter::Item = <I as core::iter::traits::iterator::Iterator>::Item
pub fn clipboard_history_client_sdk::search::QueryIter::into_iter(self) -> I
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::search::QueryIter where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::search::QueryIter::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::search::QueryIter where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::search::QueryIter::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::search::QueryIter::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_client_sdk::search::QueryIter where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::search::QueryIter::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::search::QueryIter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::search::QueryIter where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::QueryIter::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::search::QueryIter where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::QueryIter::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::search::QueryIter where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::QueryIter::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::search::QueryIter
pub fn clipboard_history_client_sdk::search::QueryIter::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::search::QueryIter
pub type clipboard_history_client_sdk::search::QueryIter::Init = T
pub const clipboard_history_client_sdk::search::QueryIter::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::search::QueryIter::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::search::QueryIter::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::search::QueryIter::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::search::QueryIter::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::search::QueryIter
impl<T> itertools::Itertools for clipboard_history_client_sdk::search::QueryIter where T: core::iter::traits::iterator::Iterator + ?core::marker::Sized
impl<T> rayon::iter::par_bridge::ParallelBridge for clipboard_history_client_sdk::search::QueryIter where T: core::iter::traits::iterator::Iterator + core::marker::Send, <T as core::iter::traits::iterator::Iterator>::Item: core::marker::Send
pub fn clipboard_history_client_sdk::search::QueryIter::par_bridge(self) -> rayon::iter::par_bridge::IterBridge<T>
pub struct clipboard_history_client_sdk::search::QueryResult
pub clipboard_history_client_sdk::search::QueryResult::end: usize
pub clipboard_history_client_sdk::search::QueryResult::location: clipboard_history_client_sdk::search::EntryLocation
pub clipboard_history_client_sdk::search::QueryResult::start: usize
impl core::clone::Clone for clipboard_history_client_sdk::search::QueryResult
pub fn clipboard_history_client_sdk::search::QueryResult::clone(&self) -> clipboard_history_client_sdk::search::QueryResult
impl core::fmt::Debug for clipboard_history_client_sdk::search::QueryResult
pub fn clipboard_history_client_sdk::search::QueryResult::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for clipboard_history_client_sdk::search::QueryResult
impl core::marker::Freeze for clipboard_history_client_sdk::search::QueryResult
impl core::marker::Send for clipboard_history_client_sdk::search::QueryResult
impl core::marker::Sync for clipboard_history_client_sdk::search::QueryResult
impl core::marker::Unpin for clipboard_history_client_sdk::search::QueryResult
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::search::QueryResult
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::search::QueryResult
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::search::QueryResult where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::search::QueryResult::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::search::QueryResult where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::search::QueryResult::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::search::QueryResult::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_client_sdk::search::QueryResult where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::search::QueryResult::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::search::QueryResult::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_client_sdk::search::QueryResult where T: core::clone::Clone
pub type clipboard_history_client_sdk::search::QueryResult::Owned = T
pub fn clipboard_history_client_sdk::search::QueryResult::clone_into(&self, target: &mut T)
pub fn clipboard_history_client_sdk::search::QueryResult::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_client_sdk::search::QueryResult where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::QueryResult::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::search::QueryResult where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::QueryResult::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::search::QueryResult where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::search::QueryResult::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_client_sdk::search::QueryResult where T: core::clone::Clone
pub unsafe fn clipboard_history_client_sdk::search::QueryResult::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_client_sdk::search::QueryResult
pub fn clipboard_history_client_sdk::search::QueryResult::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::search::QueryResult
pub type clipboard_history_client_sdk::search::QueryResult::Init = T
pub const clipboard_history_client_sdk::search::QueryResult::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::search::QueryResult::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::search::QueryResult::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::search::QueryResult::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::search::QueryResult::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::search::QueryResult
pub fn clipboard_history_client_sdk::search::search(query: clipboard_history_client_sdk::search::Query<'_>, reader: alloc::sync::Arc<clipboard_history_client_sdk::EntryReader>) -> (clipboard_history_client_sdk::search::QueryIter, impl core::iter::traits::iterator::Iterator<Item = std::thread::JoinHandle<()>> + core::marker::Send + core::marker::Sync + 'static)
pub mod clipboard_history_client_sdk::ui_actor
pub enum clipboard_history_client_sdk::ui_actor::Command
pub clipboard_history_client_sdk::ui_actor::Command::Delete(u64)
pub clipboard_history_client_sdk::ui_actor::Command::Favorite(u64)
pub clipboard_history_client_sdk::ui_actor::Command::GetDetails
pub clipboard_history_client_sdk::ui_actor::Command::GetDetails::id: u64
pub clipboard_history_client_sdk::ui_actor::Command::GetDetails::with_text: bool
pub clipboard_history_client_sdk::ui_actor::Command::LoadFirstPage
pub clipboard_history_client_sdk::ui_actor::Command::LoadImage(u64)
pub clipboard_history_client_sdk::ui_actor::Command::Paste(u64)
pub clipboard_history_client_sdk::ui_actor::Command::Search
pub clipboard_history_client_sdk::ui_actor::Command::Search::kind: clipboard_history_client_sdk::ui_actor::SearchKind
pub clipboard_history_client_sdk::ui_actor::Command::Search::query: alloc::boxed::Box<str>
pub clipboard_history_client_sdk::ui_actor::Command::Unfavorite(u64)
impl core::fmt::Debug for clipboard_history_client_sdk::ui_actor::Command
pub fn clipboard_history_client_sdk::ui_actor::Command::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::ui_actor::Command
impl core::marker::Send for clipboard_history_client_sdk::ui_actor::Command
impl core::marker::Sync for clipboard_history_client_sdk::ui_actor::Command
impl core::marker::Unpin for clipboard_history_client_sdk::ui_actor::Command
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::ui_actor::Command
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::ui_actor::Command
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::ui_actor::Command where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::ui_actor::Command::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::ui_actor::Command where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::ui_actor::Command::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::ui_actor::Command::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_client_sdk::ui_actor::Command where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::ui_actor::Command::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::ui_actor::Command::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::ui_actor::Command where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::Command::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::ui_actor::Command where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::Command::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::ui_actor::Command where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::Command::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::ui_actor::Command
pub fn clipboard_history_client_sdk::ui_actor::Command::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::ui_actor::Command
pub type clipboard_history_client_sdk::ui_actor::Command::Init = T
pub const clipboard_history_client_sdk::ui_actor::Command::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::ui_actor::Command::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::ui_actor::Command::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::ui_actor::Command::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::ui_actor::Command::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::ui_actor::Command
pub enum clipboard_history_client_sdk::ui_actor::CommandError
pub clipboard_history_client_sdk::ui_actor::CommandError::Core(clipboard_history_core::Error)
pub clipboard_history_client_sdk::ui_actor::CommandError::Image(image::error::ImageError)
pub clipboard_history_client_sdk::ui_actor::CommandError::Regex(regex::error::Error)
pub clipboard_history_client_sdk::ui_actor::CommandError::Sdk(clipboard_history_client_sdk::ClientError)
impl clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::into_report<W: error_stack::context::Context>(self, wrapper: W) -> error_stack::report::Report<W>
impl core::convert::From<clipboard_history_client_sdk::ClientError> for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::from(source: clipboard_history_client_sdk::ClientError) -> Self
impl core::convert::From<clipboard_history_core::Error> for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::from(source: clipboard_history_core::Error) -> Self
impl core::convert::From<clipboard_history_core::protocol::IdNotFoundError> for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::from(value: clipboard_history_core::protocol::IdNotFoundError) -> Self
impl core::convert::From<image::error::ImageError> for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::from(source: image::error::ImageError) -> Self
impl core::convert::From<regex::error::Error> for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::from(source: regex::error::Error) -> Self
impl core::error::Error for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
impl core::fmt::Debug for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::ui_actor::CommandError
impl core::marker::Send for clipboard_history_client_sdk::ui_actor::CommandError
impl core::marker::Sync for clipboard_history_client_sdk::ui_actor::CommandError
impl core::marker::Unpin for clipboard_history_client_sdk::ui_actor::CommandError
impl !core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::ui_actor::CommandError
impl !core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::ui_actor::CommandError
impl<C> error_stack::context::Context for clipboard_history_client_sdk::ui_actor::CommandError where C: core::error::Error + core::marker::Send + core::marker::Sync + 'static
pub fn clipboard_history_client_sdk::ui_actor::CommandError::provide<'a>(&'a self, request: &mut core::error::Request<'a>)
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::ui_actor::CommandError where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::ui_actor::CommandError::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::ui_actor::CommandError where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::ui_actor::CommandError::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::ui_actor::CommandError::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_client_sdk::ui_actor::CommandError where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::ui_actor::CommandError::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::ui_actor::CommandError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::string::ToString for clipboard_history_client_sdk::ui_actor::CommandError where T: core::fmt::Display + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::CommandError::to_string(&self) -> alloc::string::String
impl<T> core::any::Any for clipboard_history_client_sdk::ui_actor::CommandError where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::CommandError::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::ui_actor::CommandError where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::CommandError::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::ui_actor::CommandError where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::CommandError::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::ui_actor::CommandError
pub type clipboard_history_client_sdk::ui_actor::CommandError::Init = T
pub const clipboard_history_client_sdk::ui_actor::CommandError::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::ui_actor::CommandError::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::ui_actor::CommandError::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::ui_actor::CommandError::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::ui_actor::CommandError::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::ui_actor::CommandError
pub enum clipboard_history_client_sdk::ui_actor::Message
pub clipboard_history_client_sdk::ui_actor::Message::Deleted(u64)
pub clipboard_history_client_sdk::ui_actor::Message::EntryDetails
pub clipboard_history_client_sdk::ui_actor::Message::EntryDetails::id: u64
pub clipboard_history_client_sdk::ui_actor::Message::EntryDetails::result: core::result::Result<clipboard_history_client_sdk::ui_actor::DetailedEntry, clipboard_history_core::Error>
pub clipboard_history_client_sdk::ui_actor::Message::Error(clipboard_history_client_sdk::ui_actor::CommandError)
pub clipboard_history_client_sdk::ui_actor::Message::FatalDbOpen(clipboard_history_core::Error)
pub clipboard_history_client_sdk::ui_actor::Message::FavoriteChange(u64)
pub clipboard_history_client_sdk::ui_actor::Message::LoadedFirstPage
pub clipboard_history_client_sdk::ui_actor::Message::LoadedFirstPage::default_focused_id: core::option::Option<u64>
pub clipboard_history_client_sdk::ui_actor::Message::LoadedFirstPage::entries: alloc::boxed::Box<[clipboard_history_client_sdk::ui_actor::UiEntry]>
pub clipboard_history_client_sdk::ui_actor::Message::LoadedImage
pub clipboard_history_client_sdk::ui_actor::Message::LoadedImage::id: u64
pub clipboard_history_client_sdk::ui_actor::Message::LoadedImage::image: image::dynimage::DynamicImage
pub clipboard_history_client_sdk::ui_actor::Message::Pasted
pub clipboard_history_client_sdk::ui_actor::Message::PendingSearch(clipboard_history_client_sdk::search::CancellationToken)
pub clipboard_history_client_sdk::ui_actor::Message::SearchResults(alloc::boxed::Box<[clipboard_history_client_sdk::ui_actor::UiEntry]>)
impl core::fmt::Debug for clipboard_history_client_sdk::ui_actor::Message
pub fn clipboard_history_client_sdk::ui_actor::Message::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::ui_actor::Message
impl core::marker::Send for clipboard_history_client_sdk::ui_actor::Message
impl core::marker::Sync for clipboard_history_client_sdk::ui_actor::Message
impl core::marker::Unpin for clipboard_history_client_sdk::ui_actor::Message
impl !core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::ui_actor::Message
impl !core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::ui_actor::Message
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::ui_actor::Message where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::ui_actor::Message::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::ui_actor::Message where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::ui_actor::Message::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::ui_actor::Message::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_client_sdk::ui_actor::Message where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::ui_actor::Message::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::ui_actor::Message::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::ui_actor::Message where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::Message::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::ui_actor::Message where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::Message::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::ui_actor::Message where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::Message::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::ui_actor::Message
pub fn clipboard_history_client_sdk::ui_actor::Message::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::ui_actor::Message
pub type clipboard_history_client_sdk::ui_actor::Message::Init = T
pub const clipboard_history_client_sdk::ui_actor::Message::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::ui_actor::Message::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::ui_actor::Message::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::ui_actor::Message::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::ui_actor::Message::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::ui_actor::Message
pub enum clipboard_history_client_sdk::ui_actor::SearchKind
pub clipboard_history_client_sdk::ui_actor::SearchKind::Mime
pub clipboard_history_client_sdk::ui_actor::SearchKind::Plain
pub clipboard_history_client_sdk::ui_actor::SearchKind::Regex
impl core::clone::Clone for clipboard_history_client_sdk::ui_actor::SearchKind
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::clone(&self) -> clipboard_history_client_sdk::ui_actor::SearchKind
impl core::cmp::Eq for clipboard_history_client_sdk::ui_actor::SearchKind
impl core::cmp::PartialEq for clipboard_history_client_sdk::ui_actor::SearchKind
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::eq(&self, other: &clipboard_history_client_sdk::ui_actor::SearchKind) -> bool
impl core::default::Default for clipboard_history_client_sdk::ui_actor::SearchKind
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::default() -> clipboard_history_client_sdk::ui_actor::SearchKind
impl core::fmt::Debug for clipboard_history_client_sdk::ui_actor::SearchKind
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for clipboard_history_client_sdk::ui_actor::SearchKind
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
impl core::marker::Copy for clipboard_history_client_sdk::ui_actor::SearchKind
impl core::marker::StructuralPartialEq for clipboard_history_client_sdk::ui_actor::SearchKind
impl core::marker::Freeze for clipboard_history_client_sdk::ui_actor::SearchKind
impl core::marker::Send for clipboard_history_client_sdk::ui_actor::SearchKind
impl core::marker::Sync for clipboard_history_client_sdk::ui_actor::SearchKind
impl core::marker::Unpin for clipboard_history_client_sdk::ui_actor::SearchKind
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::ui_actor::SearchKind
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::ui_actor::SearchKind
impl<R, P> lebe::io::ReadPrimitive<R> for clipboard_history_client_sdk::ui_actor::SearchKind where R: std::io::Read + lebe::io::ReadEndian<P>, P: core::default::Default
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::ui_actor::SearchKind where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::ui_actor::SearchKind where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::ui_actor::SearchKind::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::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_client_sdk::ui_actor::SearchKind where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::ui_actor::SearchKind::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::borrow::ToOwned for clipboard_history_client_sdk::ui_actor::SearchKind where T: core::clone::Clone
pub type clipboard_history_client_sdk::ui_actor::SearchKind::Owned = T
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::clone_into(&self, target: &mut T)
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::to_owned(&self) -> T
impl<T> core::any::Any for clipboard_history_client_sdk::ui_actor::SearchKind where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::ui_actor::SearchKind where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::ui_actor::SearchKind where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::borrow_mut(&mut self) -> &mut T
impl<T> core::clone::CloneToUninit for clipboard_history_client_sdk::ui_actor::SearchKind where T: core::clone::Clone
pub unsafe fn clipboard_history_client_sdk::ui_actor::SearchKind::clone_to_uninit(&self, dst: *mut u8)
impl<T> core::convert::From<T> for clipboard_history_client_sdk::ui_actor::SearchKind
pub fn clipboard_history_client_sdk::ui_actor::SearchKind::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::ui_actor::SearchKind
pub type clipboard_history_client_sdk::ui_actor::SearchKind::Init = T
pub const clipboard_history_client_sdk::ui_actor::SearchKind::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::ui_actor::SearchKind::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::ui_actor::SearchKind::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::ui_actor::SearchKind::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::ui_actor::SearchKind::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::ui_actor::SearchKind
pub enum clipboard_history_client_sdk::ui_actor::UiEntryCache
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::Binary
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::Binary::mime_type: alloc::boxed::Box<str>
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::Error(clipboard_history_core::Error)
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::HighlightedText
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::HighlightedText::end: usize
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::HighlightedText::one_liner: alloc::boxed::Box<str>
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::HighlightedText::start: usize
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::Image
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::Text
pub clipboard_history_client_sdk::ui_actor::UiEntryCache::Text::one_liner: alloc::boxed::Box<str>
impl clipboard_history_client_sdk::ui_actor::UiEntryCache
pub const fn clipboard_history_client_sdk::ui_actor::UiEntryCache::is_text(&self) -> bool
impl core::fmt::Debug for clipboard_history_client_sdk::ui_actor::UiEntryCache
pub fn clipboard_history_client_sdk::ui_actor::UiEntryCache::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::ui_actor::UiEntryCache
impl core::marker::Send for clipboard_history_client_sdk::ui_actor::UiEntryCache
impl core::marker::Sync for clipboard_history_client_sdk::ui_actor::UiEntryCache
impl core::marker::Unpin for clipboard_history_client_sdk::ui_actor::UiEntryCache
impl !core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::ui_actor::UiEntryCache
impl !core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::ui_actor::UiEntryCache
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::ui_actor::UiEntryCache where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::ui_actor::UiEntryCache::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::ui_actor::UiEntryCache where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::ui_actor::UiEntryCache::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::ui_actor::UiEntryCache::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_client_sdk::ui_actor::UiEntryCache where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::ui_actor::UiEntryCache::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::ui_actor::UiEntryCache::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::ui_actor::UiEntryCache where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::UiEntryCache::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::ui_actor::UiEntryCache where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::UiEntryCache::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::ui_actor::UiEntryCache where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::UiEntryCache::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::ui_actor::UiEntryCache
pub fn clipboard_history_client_sdk::ui_actor::UiEntryCache::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::ui_actor::UiEntryCache
pub type clipboard_history_client_sdk::ui_actor::UiEntryCache::Init = T
pub const clipboard_history_client_sdk::ui_actor::UiEntryCache::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::ui_actor::UiEntryCache::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::ui_actor::UiEntryCache::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::ui_actor::UiEntryCache::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::ui_actor::UiEntryCache::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::ui_actor::UiEntryCache
pub struct clipboard_history_client_sdk::ui_actor::DetailedEntry
pub clipboard_history_client_sdk::ui_actor::DetailedEntry::full_text: core::option::Option<alloc::boxed::Box<str>>
pub clipboard_history_client_sdk::ui_actor::DetailedEntry::mime_type: alloc::boxed::Box<str>
impl core::fmt::Debug for clipboard_history_client_sdk::ui_actor::DetailedEntry
pub fn clipboard_history_client_sdk::ui_actor::DetailedEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::ui_actor::DetailedEntry
impl core::marker::Send for clipboard_history_client_sdk::ui_actor::DetailedEntry
impl core::marker::Sync for clipboard_history_client_sdk::ui_actor::DetailedEntry
impl core::marker::Unpin for clipboard_history_client_sdk::ui_actor::DetailedEntry
impl core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::ui_actor::DetailedEntry
impl core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::ui_actor::DetailedEntry
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::ui_actor::DetailedEntry where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::ui_actor::DetailedEntry::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::ui_actor::DetailedEntry where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::ui_actor::DetailedEntry::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::ui_actor::DetailedEntry::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_client_sdk::ui_actor::DetailedEntry where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::ui_actor::DetailedEntry::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::ui_actor::DetailedEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::ui_actor::DetailedEntry where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::DetailedEntry::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::ui_actor::DetailedEntry where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::DetailedEntry::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::ui_actor::DetailedEntry where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::DetailedEntry::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::ui_actor::DetailedEntry
pub fn clipboard_history_client_sdk::ui_actor::DetailedEntry::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::ui_actor::DetailedEntry
pub type clipboard_history_client_sdk::ui_actor::DetailedEntry::Init = T
pub const clipboard_history_client_sdk::ui_actor::DetailedEntry::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::ui_actor::DetailedEntry::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::ui_actor::DetailedEntry::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::ui_actor::DetailedEntry::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::ui_actor::DetailedEntry::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::ui_actor::DetailedEntry
pub struct clipboard_history_client_sdk::ui_actor::UiEntry
pub clipboard_history_client_sdk::ui_actor::UiEntry::cache: clipboard_history_client_sdk::ui_actor::UiEntryCache
pub clipboard_history_client_sdk::ui_actor::UiEntry::entry: clipboard_history_client_sdk::Entry
impl core::fmt::Debug for clipboard_history_client_sdk::ui_actor::UiEntry
pub fn clipboard_history_client_sdk::ui_actor::UiEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::ui_actor::UiEntry
impl core::marker::Send for clipboard_history_client_sdk::ui_actor::UiEntry
impl core::marker::Sync for clipboard_history_client_sdk::ui_actor::UiEntry
impl core::marker::Unpin for clipboard_history_client_sdk::ui_actor::UiEntry
impl !core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::ui_actor::UiEntry
impl !core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::ui_actor::UiEntry
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::ui_actor::UiEntry where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::ui_actor::UiEntry::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::ui_actor::UiEntry where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::ui_actor::UiEntry::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::ui_actor::UiEntry::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_client_sdk::ui_actor::UiEntry where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::ui_actor::UiEntry::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::ui_actor::UiEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> core::any::Any for clipboard_history_client_sdk::ui_actor::UiEntry where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::UiEntry::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::ui_actor::UiEntry where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::UiEntry::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::ui_actor::UiEntry where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ui_actor::UiEntry::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::ui_actor::UiEntry
pub fn clipboard_history_client_sdk::ui_actor::UiEntry::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::ui_actor::UiEntry
pub type clipboard_history_client_sdk::ui_actor::UiEntry::Init = T
pub const clipboard_history_client_sdk::ui_actor::UiEntry::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::ui_actor::UiEntry::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::ui_actor::UiEntry::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::ui_actor::UiEntry::drop(ptr: usize)
pub unsafe fn clipboard_history_client_sdk::ui_actor::UiEntry::init(init: <T as crossbeam_epoch::atomic::Pointable>::Init) -> usize
impl<T> either::into_either::IntoEither for clipboard_history_client_sdk::ui_actor::UiEntry
pub fn clipboard_history_client_sdk::ui_actor::controller<E>(commands: impl core::iter::traits::collect::IntoIterator<Item = clipboard_history_client_sdk::ui_actor::Command>, send: impl core::ops::function::FnMut(clipboard_history_client_sdk::ui_actor::Message) -> core::result::Result<(), E>)
pub enum clipboard_history_client_sdk::ClientError
pub clipboard_history_client_sdk::ClientError::Core(clipboard_history_core::Error)
pub clipboard_history_client_sdk::ClientError::InvalidResponse
pub clipboard_history_client_sdk::ClientError::InvalidResponse::context: alloc::borrow::Cow<'static, str>
pub clipboard_history_client_sdk::ClientError::VersionMismatch
pub clipboard_history_client_sdk::ClientError::VersionMismatch::actual: u8
pub clipboard_history_client_sdk::ClientError::VersionMismatch::expected: u8
impl clipboard_history_client_sdk::ClientError
pub fn clipboard_history_client_sdk::ClientError::into_report<W: error_stack::context::Context>(self, wrapper: W) -> error_stack::report::Report<W>
impl core::convert::From<clipboard_history_client_sdk::ClientError> for clipboard_history_client_sdk::ui_actor::CommandError
pub fn clipboard_history_client_sdk::ui_actor::CommandError::from(source: clipboard_history_client_sdk::ClientError) -> Self
impl core::convert::From<clipboard_history_core::Error> for clipboard_history_client_sdk::ClientError
pub fn clipboard_history_client_sdk::ClientError::from(source: clipboard_history_core::Error) -> Self
impl core::convert::From<clipboard_history_core::protocol::IdNotFoundError> for clipboard_history_client_sdk::ClientError
pub fn clipboard_history_client_sdk::ClientError::from(value: clipboard_history_core::protocol::IdNotFoundError) -> Self
impl core::error::Error for clipboard_history_client_sdk::ClientError
pub fn clipboard_history_client_sdk::ClientError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
impl core::fmt::Debug for clipboard_history_client_sdk::ClientError
pub fn clipboard_history_client_sdk::ClientError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for clipboard_history_client_sdk::ClientError
pub fn clipboard_history_client_sdk::ClientError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for clipboard_history_client_sdk::ClientError
impl core::marker::Send for clipboard_history_client_sdk::ClientError
impl core::marker::Sync for clipboard_history_client_sdk::ClientError
impl core::marker::Unpin for clipboard_history_client_sdk::ClientError
impl !core::panic::unwind_safe::RefUnwindSafe for clipboard_history_client_sdk::ClientError
impl !core::panic::unwind_safe::UnwindSafe for clipboard_history_client_sdk::ClientError
impl<C> error_stack::context::Context for clipboard_history_client_sdk::ClientError where C: core::error::Error + core::marker::Send + core::marker::Sync + 'static
pub fn clipboard_history_client_sdk::ClientError::provide<'a>(&'a self, request: &mut core::error::Request<'a>)
impl<T, U> core::convert::Into<U> for clipboard_history_client_sdk::ClientError where U: core::convert::From<T>
pub fn clipboard_history_client_sdk::ClientError::into(self) -> U
impl<T, U> core::convert::TryFrom<U> for clipboard_history_client_sdk::ClientError where U: core::convert::Into<T>
pub type clipboard_history_client_sdk::ClientError::Error = core::convert::Infallible
pub fn clipboard_history_client_sdk::ClientError::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_client_sdk::ClientError where U: core::convert::TryFrom<T>
pub type clipboard_history_client_sdk::ClientError::Error = <U as core::convert::TryFrom<T>>::Error
pub fn clipboard_history_client_sdk::ClientError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
impl<T> alloc::string::ToString for clipboard_history_client_sdk::ClientError where T: core::fmt::Display + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ClientError::to_string(&self) -> alloc::string::String
impl<T> core::any::Any for clipboard_history_client_sdk::ClientError where T: 'static + ?core::marker::Sized
pub fn clipboard_history_client_sdk::ClientError::type_id(&self) -> core::any::TypeId
impl<T> core::borrow::Borrow<T> for clipboard_history_client_sdk::ClientError where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ClientError::borrow(&self) -> &T
impl<T> core::borrow::BorrowMut<T> for clipboard_history_client_sdk::ClientError where T: ?core::marker::Sized
pub fn clipboard_history_client_sdk::ClientError::borrow_mut(&mut self) -> &mut T
impl<T> core::convert::From<T> for clipboard_history_client_sdk::ClientError
pub fn clipboard_history_client_sdk::ClientError::from(t: T) -> T
impl<T> crossbeam_epoch::atomic::Pointable for clipboard_history_client_sdk::ClientError
pub type clipboard_history_client_sdk::ClientError::Init = T
pub const clipboard_history_client_sdk::ClientError::ALIGN: usize
pub unsafe fn clipboard_history_client_sdk::ClientError::deref<'a>(ptr: usize) -> &'a T
pub unsafe fn clipboard_history_client_sdk::ClientError::deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn clipboard_history_client_sdk::ClientError::drop(ptr: usize)