GSL 7.0.0

A rust binding for the GSL (the GNU scientific library)
Documentation
//
// A rust binding for the GSL library by Guillaume Gomez (guillaume1.gomez@gmail.com)
//

use crate::ffi::FFI;
use std::marker::PhantomData;
use std::ops::Deref;

/// A struct which binds a type to a lifetime and prevent mutable access.
pub struct View<'a, T> {
    inner: T,
    phantom: PhantomData<&'a ()>,
}

impl<'a, T> View<'a, T> {
    pub(crate) fn new<P>(inner: *mut P) -> Self
    where
        T: FFI<P>,
    {
        Self {
            inner: FFI::soft_wrap(inner),
            phantom: PhantomData,
        }
    }
}

impl<'a, T> Deref for View<'a, T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}