[−][src]Struct vimwiki::elements::Table
Fields
rows: Vec<Located<Row<'a>>>centered: boolImplementations
impl<'a> Table<'a>[src]
impl<'_> Table<'_>[src]
pub fn to_borrowed(&self) -> Table<'_>[src]
pub fn into_owned(self) -> Table<'static>[src]
impl<'a> Table<'a>[src]
pub fn get_column_alignment(&self, col: usize) -> ColumnAlign[src]
Returns the alignment of the specified column within the table
NOTE: This will always return an alignment, even if the column does not exist, by using the default column alignment
pub fn get_cell(&self, row: usize, col: usize) -> Option<&Located<Cell<'a>>>[src]
Returns reference to the cell found at the specified row and column
pub fn into_children(self) -> Vec<Located<InlineElement<'a>>>[src]
Trait Implementations
impl<'a> Clone for Table<'a>[src]
impl<'a> Debug for Table<'a>[src]
impl<'de, 'a> Deserialize<'de> for Table<'a>[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl<'a> Eq for Table<'a>[src]
impl<'a> From<Table<'a>> for BlockElement<'a>[src]
fn from(original: Table<'a>) -> BlockElement<'a>[src]
impl<'a> From<Table<'a>> for Element<'a>[src]
impl<'a> Hash for Table<'a>[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<'a> PartialEq<Table<'a>> for Table<'a>[src]
impl<'a> Serialize for Table<'a>[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'a> StructuralEq for Table<'a>[src]
impl<'a> StructuralPartialEq for Table<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Table<'a>
impl<'a> Send for Table<'a>
impl<'a> Sync for Table<'a>
impl<'a> Unpin for Table<'a>
impl<'a> UnwindSafe for Table<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,