How to get the values of the actual iterator of a vector of structure

Ok, I have a iterator

vector<mystructure> my_vector;
iterator vector<mystructure>::iterator it;

Ok , I can use the iterator so:
for (it=my_vector.begin();it<my_vector.end();it++)

Ok, how can I view mystructure data using the iterator *it ?
Thanks.

Topic archived. No new replies allowed.