Tells if the headers are sent or not # Example ``` use octane::prelude::*; let mut app = Octane::new(); app.get( "/", route!(|req, res| { assert_eq!(false, res.headers_sent()); res.send("Hello, World"); assert_eq!(true, res.headers_sent()); Flow::Stop }), ); ```
(&self)
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected