From 70be4570715574e223e00f5aa8dac9b386c213e9 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 7 Mar 2021 22:59:02 -0500 Subject: [PATCH] rust: hide blitset definition --- rust/src/channel/mod.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/rust/src/channel/mod.rs b/rust/src/channel/mod.rs index 75ebaf081..591404f7d 100644 --- a/rust/src/channel/mod.rs +++ b/rust/src/channel/mod.rs @@ -223,15 +223,3 @@ pub type NcRgb = u32; /// `type in C: no data type` /// pub type NcColor = u8; - -/// the [NcEgc][crate::NcEgc] which form the various levels of a given geometry. -/// -/// If the geometry is wide, things are arranged with the rightmost side -/// increasing most quickly, i.e. it can be indexed as height arrays of -/// 1 + height glyphs. -/// i.e. The first five braille EGCs are all 0 on the left, -/// [0..4] on the right. -/// -/// `type in C: blitset (struct)` -/// -pub type NcBlitSet = crate::bindings::ffi::blitset;