sabiql 1.10.0

A fast, driver-less TUI for browsing and editing PostgreSQL databases
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Debug, Clone, thiserror::Error)]
#[error("{message}")]
pub struct ClipboardError {
    pub message: String,
}

pub trait ClipboardWriter: Send + Sync {
    fn copy_text(&self, content: &str) -> Result<(), ClipboardError>;
}