[][src]Struct gitar::Guitar

pub struct Guitar { /* fields omitted */ }

A guitar with any number of strings.

Implementations

impl Guitar[src]

pub fn locations(&self, note: Note) -> Vec<FretboardLocation>[src]

Returns the fretboard locations of the given note.

Examples

use gitar::FretboardLocation;
use minstrel::Note;
use std::str::FromStr;

let luthier = gitar::Luthier::new(20).string(gitar::standard_tuning());
let guitar = luthier.build();

let locations = guitar.locations(Note::from_str("E3").unwrap());
assert_eq!(
    locations,
    vec![
        FretboardLocation::new(4, 2),
        FretboardLocation::new(5, 7),
        FretboardLocation::new(6, 12)
    ]
);

Trait Implementations

impl Debug for Guitar[src]

Auto Trait Implementations

impl RefUnwindSafe for Guitar

impl Send for Guitar

impl Sync for Guitar

impl Unpin for Guitar

impl UnwindSafe for Guitar

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.