copypasta
v0.10.0
Copypasta عبارة عن شوكة حافظة صدئة، مما يضيف دعمًا لحافظة Wayland.
Rust-clipboard هي مكتبة مشتركة بين الأنظمة الأساسية للحصول على محتويات الحافظة على مستوى نظام التشغيل وتعيينها.
extern crate copypasta ;
use copypasta :: { ClipboardContext , ClipboardProvider } ;
fn main ( ) {
let mut ctx = ClipboardContext :: new ( ) . unwrap ( ) ;
let msg = "Hello, world!" ;
ctx . set_contents ( msg . to_owned ( ) ) . unwrap ( ) ;
let content = ctx . get_contents ( ) . unwrap ( ) ;
println ! ( "{}" , content ) ;
}
تحتوي سمة ClipboardProvider
على الوظائف التالية:
fn get_contents ( & mut self ) -> Result < String , Box < Error > > ;
fn set_contents ( & mut self , String ) -> Result < ( ) , Box < Error > > ;
ClipboardContext
هو نوع مستعار لواحد من { WindowsClipboardContext
, OSXClipboardContext
, X11ClipboardContext
, NopClipboardContext
}، وكلها تطبق ClipboardProvider
. يعتمد نوع الخرسانة الذي تم اختياره لـ ClipboardContext
على نظام التشغيل (من خلال التجميع الشرطي).
rust-clipboard
مرخص بشكل مزدوج بموجب MIT وApache2.